Garmin GPSMAP 17 Technische specificaties - Pagina 32

Blader online of download pdf Technische specificaties voor {categorie_naam} Garmin GPSMAP 17. Garmin GPSMAP 17 40 pagina's. Gps receiver/antenna
Ook voor Garmin GPSMAP 17: Handleiding voor installatie-instructies (16 pagina's), Handleiding voor installatie-instructies (12 pagina's), Installatiehandleiding (16 pagina's), Referentiehandleiding (1 pagina's), Technische referentie (30 pagina's), Handleiding voor installatie-instructies (17 pagina's), Handleiding voor installatie-instructies (19 pagina's), Conformiteitsverklaring (1 pagina's), Snelstarthandleiding (16 pagina's)

Garmin GPSMAP 17 Technische specificaties

Sample C Code

DLE and ETX bytes:
Sample C code to receive the two records should filter DLE and ETX bytes as described below:
typedef enum
{
DAT,
DLE,
ETX
} rx_state_type;
/* Declare and initialize static variables */
static char
static int
static rx_state_type rx_state = DAT;
.
.
.
void add_to_que( char data )
{
#define DLE_BYTE 0x10
#define ETX_BYTE 0x03
if ( rx_state == DAT )
{
if ( data == DLE_BYTE )
{
rx_state = DLE;
}
else
{
in_que[ in_que_ptr++ ] = data;
}
}
else if ( rx_state == DLE )
{
if ( data == ETX_BYTE )
{
rx_state = ETX;
}
else
{
rx_state = DAT;
in_que[ in_que_ptr++ ] = data;
}
}
else if ( rx_state == ETX )
{
if ( data == DLE_BYTE )
{
rx_state = DLE;
}
}
if ( in_que_ptr > 255 )
{
in_que_ptr = 0;
}
}
190-00228-20
in_que[ 256 ];
in_que_ptr = 0;
GPS 16/17 Technical Specifications
Page 28
Rev. C