Garmin 010-00625-00 - Mobile - For BlackBerry Spécifications techniques - Page 20

Parcourez en ligne ou téléchargez le pdf Spécifications techniques pour {nom_de_la_catégorie} Garmin 010-00625-00 - Mobile - For BlackBerry. Garmin 010-00625-00 - Mobile - For BlackBerry 26 pages. Declaration of conformity
Également pour Garmin 010-00625-00 - Mobile - For BlackBerry : Manuel de démarrage rapide (12 pages), Informations sur le produit (4 pages), Déclaration de conformité (1 pages)

Garmin 010-00625-00 - Mobile - For BlackBerry Spécifications techniques
DLE and ETX bytes:
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-00769-00
GPS 10x Technical Specifications
Page 16
Rev. A