Sample C Code - Garmin GPS 17HVS - Receiver Module Technical Specifications

Technical specifications
Hide thumbs Also See for GPS 17HVS - Receiver Module:
Table of Contents

Advertisement

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-21
in_que[ 256 ];
in_que_ptr = 0;
GPS 16/17 Technical Specifications
Page 25
Rev. A

Hide quick links:

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the GPS 17HVS - Receiver Module and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Gps 16 seriesGps 17 seriesGps 16lvsGps 16hvs

Table of Contents