Garmin 010-00625-00 - Mobile - For BlackBerry 기술 사양 - 페이지 20

{카테고리_이름} Garmin 010-00625-00 - Mobile - For BlackBerry에 대한 기술 사양을 온라인으로 검색하거나 PDF를 다운로드하세요. Garmin 010-00625-00 - Mobile - For BlackBerry 26 페이지. Declaration of conformity
Garmin 010-00625-00 - Mobile - For BlackBerry에 대해서도 마찬가지입니다: 빠른 시작 매뉴얼 (12 페이지), 제품 정보 (4 페이지), 적합성 선언 (1 페이지)

Garmin 010-00625-00 - Mobile - For BlackBerry 기술 사양
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