beautypg.com

Sapphire pseudocode message parser – NavCom Sapphire Rev.J User Manual

Page 392

background image

Sapphire Technical Reference Manual Rev. J

392

0x02b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256,

0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d,

0x34e2, 0x24c3, 0x14a0, 0x0481, 0x7466, 0x6447, 0x5424, 0x4405,

0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c,

0x26d3, 0x36f2, 0x0691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634,

0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab,

0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x08e1, 0x3882, 0x28a3,

0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a,

0x4a75, 0x5a54, 0x6a37, 0x7a16, 0x0af1, 0x1ad0, 0x2ab3, 0x3a92,

0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9,

0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0x0cc1,

0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8,

0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0x0ed1, 0x1ef0

};

U16 crc_CCITT(U08 *buf, int length)

{

U16 accum;

for ( accum = 0; length != 0; length--, buf++)

accum = (U16)((accum << 8) ^ CrcTable[(accum >> 8) ^ *buf]);

return ( accum );

}

Sapphire Pseudocode Message Parser

This source code is an example of basic message parsing:

typedef enum {
GET_LEFT_BRACE=1,
GET_MNEMONIC,
GET_LEN1, // For binary message
GET_LEN2, // For binary message
GET_MSG_BODY, // For binary message
GET_CRC16_START, // For binary message
GET_CRC16,
} ParseState;

char mnemonic[MAX_MNEMONIC_LEN];
char msg_body[MAX_MSG_BODY_LEN];
char crc_str[4];

#define CARRIAGE_RETURN 0x0D