overhauled CFontz633io.c: doxygen'ated it, added more check for cyclical fifos, ...
This commit is contained in:
+318
-335
@@ -26,15 +26,16 @@
|
||||
|
||||
COMMAND_PACKET incoming_command;
|
||||
|
||||
/* variables for circular receive buffer */
|
||||
#define RECEIVEBUFFERSIZE 512
|
||||
unsigned char SerialReceiveBuffer[RECEIVEBUFFERSIZE];
|
||||
int ReceiveBufferHead;
|
||||
int ReceiveBufferTail;
|
||||
int ReceiveBufferTailPeek;
|
||||
int ReceiveBufferHead = 0;
|
||||
int ReceiveBufferTail = 0;
|
||||
int ReceiveBufferTailPeek = 0;
|
||||
|
||||
|
||||
/*
|
||||
* KeyRing handeling function.
|
||||
* KeyRing handling function.
|
||||
* This separate the producer from the consumer.
|
||||
* It is just a small fifo of unsigned char.
|
||||
*/
|
||||
@@ -44,190 +45,173 @@ unsigned char KeyRing[KEYRINGSIZE];
|
||||
int KeyHead = 0;
|
||||
int KeyTail = 0;
|
||||
|
||||
/*-OK-----------------------------------------------------------------------*/
|
||||
|
||||
/** initialize/empty key ring by resetting its read & write pointers */
|
||||
void EmptyKeyRing(void)
|
||||
{
|
||||
KeyHead = KeyTail = 0;
|
||||
KeyHead = KeyTail = 0;
|
||||
}
|
||||
|
||||
/*-OK-----------------------------------------------------------------------*/
|
||||
|
||||
/** add byte to key ring; return success (byte added) / failure (key ring is full) */
|
||||
int AddKeyToKeyRing(unsigned char key)
|
||||
{
|
||||
if (((KeyHead + 1) % KEYRINGSIZE) != (KeyTail % KEYRINGSIZE)) {
|
||||
/* printf("We add key: %d\n", key); */
|
||||
if (((KeyHead + 1) % KEYRINGSIZE) != (KeyTail % KEYRINGSIZE)) {
|
||||
/* printf("We add key: %d\n", key); */
|
||||
|
||||
KeyRing[KeyHead % KEYRINGSIZE] = key;
|
||||
KeyHead = (KeyHead + 1) % KEYRINGSIZE;
|
||||
return 1;
|
||||
}
|
||||
/* KeyRing overflow: do not accept extra key */
|
||||
return 0;
|
||||
KeyRing[KeyHead % KEYRINGSIZE] = key;
|
||||
KeyHead = (KeyHead + 1) % KEYRINGSIZE;
|
||||
return 1;
|
||||
}
|
||||
/* KeyRing overflow: do not accept extra key */
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*-OK-----------------------------------------------------------------------*/
|
||||
|
||||
/** get byte from key ring (or '\0' if key ring is empty) */
|
||||
unsigned char GetKeyFromKeyRing(void)
|
||||
{
|
||||
int retval = 0;
|
||||
unsigned char retval = '\0';
|
||||
|
||||
if ((KeyHead % KEYRINGSIZE) != (KeyTail % KEYRINGSIZE )) {
|
||||
retval = KeyRing[KeyTail % KEYRINGSIZE];
|
||||
KeyTail = (KeyTail + 1) % KEYRINGSIZE;
|
||||
}
|
||||
KeyTail %= KEYRINGSIZE;
|
||||
|
||||
/* if (retval) printf("We remove key: %d\n", retval); */
|
||||
if ((KeyHead % KEYRINGSIZE) != KeyTail) {
|
||||
retval = KeyRing[KeyTail];
|
||||
KeyTail = (KeyTail + 1) % KEYRINGSIZE;
|
||||
}
|
||||
|
||||
return retval;
|
||||
/* if (retval) printf("We remove key: %d\n", retval); */
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* ----------------------------------------------------------------------------
|
||||
* send_packet() send_packet() will send set the CRC in outgoing_response
|
||||
* and send it to the host.
|
||||
* ----------------------------------------------------------------------------
|
||||
*/
|
||||
/** send message with arguments to the given handle */
|
||||
void send_bytes_message(int fd, int len, int msg, char *framebuf)
|
||||
{
|
||||
int i;
|
||||
outgoing_response.command=msg;
|
||||
outgoing_response.data_length=len;
|
||||
for (i = 0; i < outgoing_response.data_length; i++) {
|
||||
outgoing_response.data[i]=framebuf[i];
|
||||
}
|
||||
send_packet(fd);
|
||||
int i;
|
||||
|
||||
outgoing_response.command = msg;
|
||||
outgoing_response.data_length = len;
|
||||
for (i = 0; i < outgoing_response.data_length; i++)
|
||||
outgoing_response.data[i] = framebuf[i];
|
||||
|
||||
/* send message & calc CRC */
|
||||
send_packet(fd);
|
||||
}
|
||||
|
||||
|
||||
/** send message with one byte argument to the given handle */
|
||||
void send_onebyte_message(int fd, int msg, int value)
|
||||
{
|
||||
outgoing_response.command=msg;
|
||||
outgoing_response.data_length=1;
|
||||
outgoing_response.data[0]=value;
|
||||
send_packet(fd);
|
||||
outgoing_response.command = msg;
|
||||
outgoing_response.data_length = 1;
|
||||
outgoing_response.data[0] = value;
|
||||
|
||||
/* send message & calc CRC */
|
||||
send_packet(fd);
|
||||
}
|
||||
|
||||
|
||||
/** send message without data to the given handle */
|
||||
void send_zerobyte_message(int fd, int msg)
|
||||
{
|
||||
outgoing_response.command=msg;
|
||||
outgoing_response.data_length=0;
|
||||
send_packet(fd);
|
||||
outgoing_response.command = msg;
|
||||
outgoing_response.data_length = 0;
|
||||
|
||||
/* send message & calc CRC */
|
||||
send_packet(fd);
|
||||
}
|
||||
|
||||
|
||||
/*----------------------------------------------------------------------------*/
|
||||
int get_crc(char *bufptr, int len, int seed)
|
||||
/** calculate CRC over given buffer with given length */
|
||||
int get_crc(char *buf, int len, int seed)
|
||||
{
|
||||
|
||||
/*
|
||||
* CRC lookup table to avoid bit-shifting loops.
|
||||
*/
|
||||
static const word crcLookupTable[256] = {
|
||||
0x00000, 0x01189, 0x02312, 0x0329B, 0x04624, 0x057AD, 0x06536, 0x074BF,
|
||||
0x08C48, 0x09DC1, 0x0AF5A, 0x0BED3, 0x0CA6C, 0x0DBE5, 0x0E97E, 0x0F8F7,
|
||||
0x01081, 0x00108, 0x03393, 0x0221A, 0x056A5, 0x0472C, 0x075B7, 0x0643E,
|
||||
0x09CC9, 0x08D40, 0x0BFDB, 0x0AE52, 0x0DAED, 0x0CB64, 0x0F9FF, 0x0E876,
|
||||
0x02102, 0x0308B, 0x00210, 0x01399, 0x06726, 0x076AF, 0x04434, 0x055BD,
|
||||
0x0AD4A, 0x0BCC3, 0x08E58, 0x09FD1, 0x0EB6E, 0x0FAE7, 0x0C87C, 0x0D9F5,
|
||||
0x03183, 0x0200A, 0x01291, 0x00318, 0x077A7, 0x0662E, 0x054B5, 0x0453C,
|
||||
0x0BDCB, 0x0AC42, 0x09ED9, 0x08F50, 0x0FBEF, 0x0EA66, 0x0D8FD, 0x0C974,
|
||||
0x04204, 0x0538D, 0x06116, 0x0709F, 0x00420, 0x015A9, 0x02732, 0x036BB,
|
||||
0x0CE4C, 0x0DFC5, 0x0ED5E, 0x0FCD7, 0x08868, 0x099E1, 0x0AB7A, 0x0BAF3,
|
||||
0x05285, 0x0430C, 0x07197, 0x0601E, 0x014A1, 0x00528, 0x037B3, 0x0263A,
|
||||
0x0DECD, 0x0CF44, 0x0FDDF, 0x0EC56, 0x098E9, 0x08960, 0x0BBFB, 0x0AA72,
|
||||
0x06306, 0x0728F, 0x04014, 0x0519D, 0x02522, 0x034AB, 0x00630, 0x017B9,
|
||||
0x0EF4E, 0x0FEC7, 0x0CC5C, 0x0DDD5, 0x0A96A, 0x0B8E3, 0x08A78, 0x09BF1,
|
||||
0x07387, 0x0620E, 0x05095, 0x0411C, 0x035A3, 0x0242A, 0x016B1, 0x00738,
|
||||
0x0FFCF, 0x0EE46, 0x0DCDD, 0x0CD54, 0x0B9EB, 0x0A862, 0x09AF9, 0x08B70,
|
||||
0x08408, 0x09581, 0x0A71A, 0x0B693, 0x0C22C, 0x0D3A5, 0x0E13E, 0x0F0B7,
|
||||
0x00840, 0x019C9, 0x02B52, 0x03ADB, 0x04E64, 0x05FED, 0x06D76, 0x07CFF,
|
||||
0x09489, 0x08500, 0x0B79B, 0x0A612, 0x0D2AD, 0x0C324, 0x0F1BF, 0x0E036,
|
||||
0x018C1, 0x00948, 0x03BD3, 0x02A5A, 0x05EE5, 0x04F6C, 0x07DF7, 0x06C7E,
|
||||
0x0A50A, 0x0B483, 0x08618, 0x09791, 0x0E32E, 0x0F2A7, 0x0C03C, 0x0D1B5,
|
||||
0x02942, 0x038CB, 0x00A50, 0x01BD9, 0x06F66, 0x07EEF, 0x04C74, 0x05DFD,
|
||||
0x0B58B, 0x0A402, 0x09699, 0x08710, 0x0F3AF, 0x0E226, 0x0D0BD, 0x0C134,
|
||||
0x039C3, 0x0284A, 0x01AD1, 0x00B58, 0x07FE7, 0x06E6E, 0x05CF5, 0x04D7C,
|
||||
0x0C60C, 0x0D785, 0x0E51E, 0x0F497, 0x08028, 0x091A1, 0x0A33A, 0x0B2B3,
|
||||
0x04A44, 0x05BCD, 0x06956, 0x078DF, 0x00C60, 0x01DE9, 0x02F72, 0x03EFB,
|
||||
0x0D68D, 0x0C704, 0x0F59F, 0x0E416, 0x090A9, 0x08120, 0x0B3BB, 0x0A232,
|
||||
0x05AC5, 0x04B4C, 0x079D7, 0x0685E, 0x01CE1, 0x00D68, 0x03FF3, 0x02E7A,
|
||||
0x0E70E, 0x0F687, 0x0C41C, 0x0D595, 0x0A12A, 0x0B0A3, 0x08238, 0x093B1,
|
||||
0x06B46, 0x07ACF, 0x04854, 0x059DD, 0x02D62, 0x03CEB, 0x00E70, 0x01FF9,
|
||||
0x0F78F, 0x0E606, 0x0D49D, 0x0C514, 0x0B1AB, 0x0A022, 0x092B9, 0x08330,
|
||||
0x07BC7, 0x06A4E, 0x058D5, 0x0495C, 0x03DE3, 0x02C6A, 0x01EF1, 0x00F78
|
||||
};
|
||||
/* CRC lookup table to avoid bit-shifting loops. */
|
||||
static const word crcLookupTable[256] = {
|
||||
0x00000, 0x01189, 0x02312, 0x0329B, 0x04624, 0x057AD, 0x06536, 0x074BF,
|
||||
0x08C48, 0x09DC1, 0x0AF5A, 0x0BED3, 0x0CA6C, 0x0DBE5, 0x0E97E, 0x0F8F7,
|
||||
0x01081, 0x00108, 0x03393, 0x0221A, 0x056A5, 0x0472C, 0x075B7, 0x0643E,
|
||||
0x09CC9, 0x08D40, 0x0BFDB, 0x0AE52, 0x0DAED, 0x0CB64, 0x0F9FF, 0x0E876,
|
||||
0x02102, 0x0308B, 0x00210, 0x01399, 0x06726, 0x076AF, 0x04434, 0x055BD,
|
||||
0x0AD4A, 0x0BCC3, 0x08E58, 0x09FD1, 0x0EB6E, 0x0FAE7, 0x0C87C, 0x0D9F5,
|
||||
0x03183, 0x0200A, 0x01291, 0x00318, 0x077A7, 0x0662E, 0x054B5, 0x0453C,
|
||||
0x0BDCB, 0x0AC42, 0x09ED9, 0x08F50, 0x0FBEF, 0x0EA66, 0x0D8FD, 0x0C974,
|
||||
0x04204, 0x0538D, 0x06116, 0x0709F, 0x00420, 0x015A9, 0x02732, 0x036BB,
|
||||
0x0CE4C, 0x0DFC5, 0x0ED5E, 0x0FCD7, 0x08868, 0x099E1, 0x0AB7A, 0x0BAF3,
|
||||
0x05285, 0x0430C, 0x07197, 0x0601E, 0x014A1, 0x00528, 0x037B3, 0x0263A,
|
||||
0x0DECD, 0x0CF44, 0x0FDDF, 0x0EC56, 0x098E9, 0x08960, 0x0BBFB, 0x0AA72,
|
||||
0x06306, 0x0728F, 0x04014, 0x0519D, 0x02522, 0x034AB, 0x00630, 0x017B9,
|
||||
0x0EF4E, 0x0FEC7, 0x0CC5C, 0x0DDD5, 0x0A96A, 0x0B8E3, 0x08A78, 0x09BF1,
|
||||
0x07387, 0x0620E, 0x05095, 0x0411C, 0x035A3, 0x0242A, 0x016B1, 0x00738,
|
||||
0x0FFCF, 0x0EE46, 0x0DCDD, 0x0CD54, 0x0B9EB, 0x0A862, 0x09AF9, 0x08B70,
|
||||
0x08408, 0x09581, 0x0A71A, 0x0B693, 0x0C22C, 0x0D3A5, 0x0E13E, 0x0F0B7,
|
||||
0x00840, 0x019C9, 0x02B52, 0x03ADB, 0x04E64, 0x05FED, 0x06D76, 0x07CFF,
|
||||
0x09489, 0x08500, 0x0B79B, 0x0A612, 0x0D2AD, 0x0C324, 0x0F1BF, 0x0E036,
|
||||
0x018C1, 0x00948, 0x03BD3, 0x02A5A, 0x05EE5, 0x04F6C, 0x07DF7, 0x06C7E,
|
||||
0x0A50A, 0x0B483, 0x08618, 0x09791, 0x0E32E, 0x0F2A7, 0x0C03C, 0x0D1B5,
|
||||
0x02942, 0x038CB, 0x00A50, 0x01BD9, 0x06F66, 0x07EEF, 0x04C74, 0x05DFD,
|
||||
0x0B58B, 0x0A402, 0x09699, 0x08710, 0x0F3AF, 0x0E226, 0x0D0BD, 0x0C134,
|
||||
0x039C3, 0x0284A, 0x01AD1, 0x00B58, 0x07FE7, 0x06E6E, 0x05CF5, 0x04D7C,
|
||||
0x0C60C, 0x0D785, 0x0E51E, 0x0F497, 0x08028, 0x091A1, 0x0A33A, 0x0B2B3,
|
||||
0x04A44, 0x05BCD, 0x06956, 0x078DF, 0x00C60, 0x01DE9, 0x02F72, 0x03EFB,
|
||||
0x0D68D, 0x0C704, 0x0F59F, 0x0E416, 0x090A9, 0x08120, 0x0B3BB, 0x0A232,
|
||||
0x05AC5, 0x04B4C, 0x079D7, 0x0685E, 0x01CE1, 0x00D68, 0x03FF3, 0x02E7A,
|
||||
0x0E70E, 0x0F687, 0x0C41C, 0x0D595, 0x0A12A, 0x0B0A3, 0x08238, 0x093B1,
|
||||
0x06B46, 0x07ACF, 0x04854, 0x059DD, 0x02D62, 0x03CEB, 0x00E70, 0x01FF9,
|
||||
0x0F78F, 0x0E606, 0x0D49D, 0x0C514, 0x0B1AB, 0x0A022, 0x092B9, 0x08330,
|
||||
0x07BC7, 0x06A4E, 0x058D5, 0x0495C, 0x03DE3, 0x02C6A, 0x01EF1, 0x00F78
|
||||
};
|
||||
|
||||
/*
|
||||
* Initial value of the CRC.
|
||||
*/
|
||||
int newCrc;
|
||||
/* initialize the new crc with the given seed */
|
||||
int newCrc = seed;
|
||||
|
||||
/*
|
||||
* seed should be 0xFFFF;
|
||||
*/
|
||||
newCrc = seed;
|
||||
/* This algorithm is based on the IrDA LAP example */
|
||||
while (len-- > 0)
|
||||
newCrc = (newCrc >> 8) ^ crcLookupTable[(newCrc ^ *buf++) & 0xff];
|
||||
|
||||
/*
|
||||
* This algorithim is based on the IrDA LAP example.
|
||||
*/
|
||||
while (len--)
|
||||
newCrc =
|
||||
(newCrc >> 8) ^ crcLookupTable[(newCrc ^ *bufptr++) & 0xff];
|
||||
|
||||
/*
|
||||
* Make this crc match the one's complement that is sent in the packet.
|
||||
*/
|
||||
return (~newCrc);
|
||||
/* Make this crc match the one's complement that is sent in the packet */
|
||||
return (~newCrc);
|
||||
}
|
||||
|
||||
|
||||
/** send one byte to the given handle */
|
||||
void
|
||||
SendByte(int fd, unsigned char datum)
|
||||
{
|
||||
int bytes_written;
|
||||
bytes_written = 0;
|
||||
bytes_written = write(fd, &datum, 1);
|
||||
/* if (bytes_written != 1) {
|
||||
printf("SendByte(): only %d of %d bytes sent.", bytes_written, 1);
|
||||
} */
|
||||
|
||||
return;
|
||||
write(fd, &datum, 1);
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
COMMAND_PACKET outgoing_response;
|
||||
|
||||
/*
|
||||
* ============================================================================
|
||||
* send_packet() send_packet() will send set the CRC in outgoing_response
|
||||
* and send it to the host.
|
||||
* ----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
/** send outgoing_response to the given handle; calc & send CRC when doing so */
|
||||
void
|
||||
send_packet(int fd)
|
||||
{
|
||||
unsigned char i;
|
||||
unsigned char i;
|
||||
|
||||
SendByte(fd, outgoing_response.command);
|
||||
SendByte(fd, outgoing_response.data_length);
|
||||
for (i = 0; i < outgoing_response.data_length; i++) {
|
||||
SendByte(fd, outgoing_response.data[i]);
|
||||
}
|
||||
/*
|
||||
* Set the CRC
|
||||
*/
|
||||
outgoing_response.CRC.as_word =
|
||||
get_crc((unsigned char *) & outgoing_response,
|
||||
outgoing_response.data_length + 2, 0xFFFF);
|
||||
SendByte(fd, outgoing_response.CRC.as_bytes[0]);
|
||||
SendByte(fd, outgoing_response.CRC.as_bytes[1]);
|
||||
SendByte(fd, outgoing_response.command);
|
||||
SendByte(fd, outgoing_response.data_length);
|
||||
for (i = 0; i < outgoing_response.data_length; i++) {
|
||||
SendByte(fd, outgoing_response.data[i]);
|
||||
}
|
||||
|
||||
/* calculate & send the CRC */
|
||||
outgoing_response.CRC.as_word = get_crc((unsigned char *) &outgoing_response,
|
||||
outgoing_response.data_length + 2, 0xFFFF);
|
||||
SendByte(fd, outgoing_response.CRC.as_bytes[0]);
|
||||
SendByte(fd, outgoing_response.CRC.as_bytes[1]);
|
||||
|
||||
/**** TEST STUF ****/
|
||||
// print_packet(&outgoing_response);
|
||||
/**** TEST STUF ****/
|
||||
// print_packet(&outgoing_response);
|
||||
|
||||
/* Every time we send a message, we also check for incomming one. */
|
||||
test_packet(fd);
|
||||
/* Every time we send a message, we also check for an incoming one. */
|
||||
test_packet(fd);
|
||||
}
|
||||
|
||||
|
||||
@@ -254,156 +238,153 @@ send_packet(int fd)
|
||||
/* -------------------------------------------------- */
|
||||
/* ^ Tail ^ Head */
|
||||
|
||||
/*-OK-----------------------------------------------------------------------*/
|
||||
void EmptyReceiveBuffer(void)
|
||||
{
|
||||
ReceiveBufferHead=ReceiveBufferTail=0;
|
||||
}
|
||||
|
||||
/*-OK------------------------------------------------------------------------
|
||||
* Gets incoming data from Window's ReadFile() and puts it into
|
||||
* SerialReceiveBuffer[].
|
||||
*/
|
||||
/** initialize/empty receive buffer by resetting its pointers */
|
||||
void EmptyReceiveBuffer(void)
|
||||
{
|
||||
ReceiveBufferHead = ReceiveBufferTail = ReceiveBufferTailPeek = 0;
|
||||
}
|
||||
|
||||
|
||||
/** read given number of bytes from given file handle into receive buffer */
|
||||
void Sync_Read_Buffer(int fd, unsigned char expected_bytes)
|
||||
{
|
||||
{
|
||||
unsigned char Incoming[512];
|
||||
int BytesRead;
|
||||
int i;
|
||||
|
||||
|
||||
// ToDo: check that expected_bytes < sizeof(Incoming)
|
||||
BytesRead = read(fd, Incoming, expected_bytes);
|
||||
if (BytesRead==-1){
|
||||
/* printf("~~~Problem reading: %s .\n", strerror(errno)); */
|
||||
if (BytesRead == -1){
|
||||
/* printf("~~~Problem reading: %s .\n", strerror(errno)); */
|
||||
}
|
||||
else
|
||||
{
|
||||
/* printf("Readed %d Bytes:", BytesRead); */
|
||||
else {
|
||||
int i;
|
||||
|
||||
/* Read the incoming unsigned char, store it, */
|
||||
for(i=0; i<BytesRead; i++)
|
||||
{
|
||||
/* printf(" %02x", Incoming[i]); */
|
||||
SerialReceiveBuffer[ReceiveBufferHead]=Incoming[i];
|
||||
/* Increment the pointer and wrap if needed. */
|
||||
ReceiveBufferHead++;
|
||||
if(RECEIVEBUFFERSIZE<=ReceiveBufferHead)
|
||||
ReceiveBufferHead=0;
|
||||
/* printf("Read %d Bytes:", BytesRead); */
|
||||
|
||||
/* wrap write pointer to the receive buffer */
|
||||
ReceiveBufferHead %= RECEIVEBUFFERSIZE;
|
||||
|
||||
/* Read the incoming byte and store it, */
|
||||
for (i = 0; i < BytesRead; i++) {
|
||||
/* printf(" %02x", Incoming[i]); */
|
||||
SerialReceiveBuffer[ReceiveBufferHead] = Incoming[i];
|
||||
|
||||
/* increment write pointer (wrap if needed) */
|
||||
ReceiveBufferHead = (ReceiveBufferHead + 1) % RECEIVEBUFFERSIZE;
|
||||
}
|
||||
/* printf("\n"); */
|
||||
}
|
||||
}
|
||||
/* printf("\n"); */
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*-OK-----------------------------------------------------------------------*/
|
||||
/** return number of bytes available for reading in receive buffer */
|
||||
int BytesAvail(void)
|
||||
{
|
||||
int return_value;
|
||||
{
|
||||
int avail_bytes = ReceiveBufferHead - ReceiveBufferTail;
|
||||
|
||||
if (avail_bytes < 0)
|
||||
avail_bytes += RECEIVEBUFFERSIZE;
|
||||
|
||||
return_value=ReceiveBufferHead-ReceiveBufferTail;
|
||||
if(return_value<0)
|
||||
return_value+=RECEIVEBUFFERSIZE;
|
||||
return(return_value);
|
||||
}
|
||||
return(avail_bytes % RECEIVEBUFFERSIZE);
|
||||
}
|
||||
|
||||
/*-OK-----------------------------------------------------------------------*/
|
||||
|
||||
/** get next byte from receive buffer (return '\0' if buffer is empty) */
|
||||
unsigned char GetByte(void)
|
||||
{
|
||||
unsigned char return_byte;
|
||||
{
|
||||
unsigned char return_byte = '\0';
|
||||
|
||||
return_byte=0;
|
||||
/* wrap read pointer to the receive buffer */
|
||||
ReceiveBufferTail %= RECEIVEBUFFERSIZE;
|
||||
|
||||
/* See if there are any more bytes available. */
|
||||
if(ReceiveBufferTail!=ReceiveBufferHead)
|
||||
{
|
||||
/* There is at least one more ubyte. */
|
||||
return_byte=SerialReceiveBuffer[ReceiveBufferTail];
|
||||
/* See if there are any more bytes available. */
|
||||
if (ReceiveBufferTail != (ReceiveBufferHead % RECEIVEBUFFERSIZE)) {
|
||||
/* There is at least one more byte. */
|
||||
return_byte = SerialReceiveBuffer[ReceiveBufferTail];
|
||||
|
||||
/* Increment the pointer and wrap if needed. */
|
||||
ReceiveBufferTail++;
|
||||
if(RECEIVEBUFFERSIZE<=ReceiveBufferTail)
|
||||
ReceiveBufferTail=0;
|
||||
}
|
||||
/* Increment read pointer (wrap if needed) */
|
||||
ReceiveBufferTail = (ReceiveBufferTail + 1) % RECEIVEBUFFERSIZE;
|
||||
}
|
||||
|
||||
return(return_byte);
|
||||
}
|
||||
return(return_byte);
|
||||
}
|
||||
|
||||
/*-OK-----------------------------------------------------------------------*/
|
||||
|
||||
/** get byte from receive buffer (or '\0' if buffer is empty) */
|
||||
unsigned char DiscardGetByte(void)
|
||||
{
|
||||
unsigned char return_byte;
|
||||
{
|
||||
unsigned char return_byte = '\0';
|
||||
|
||||
return_byte=0;
|
||||
|
||||
/* wrap read pointer to the receive buffer */
|
||||
ReceiveBufferTail %= RECEIVEBUFFERSIZE;
|
||||
|
||||
/* See if there are any more bytes available. */
|
||||
if(ReceiveBufferTail!=ReceiveBufferHead)
|
||||
{
|
||||
/* There is at least one more ubyte. */
|
||||
return_byte=SerialReceiveBuffer[ReceiveBufferTail];
|
||||
/* See if there are any more bytes available. */
|
||||
if (ReceiveBufferTail != (ReceiveBufferHead % RECEIVEBUFFERSIZE)) {
|
||||
/* There is at least one more ubyte. */
|
||||
return_byte = SerialReceiveBuffer[ReceiveBufferTail];
|
||||
|
||||
/* Increment the pointer and wrap if needed. */
|
||||
ReceiveBufferTail++;
|
||||
if(RECEIVEBUFFERSIZE<=ReceiveBufferTail)
|
||||
ReceiveBufferTail=0;
|
||||
}
|
||||
|
||||
/* printf("Discarded : /%02x/\n", return_byte); */
|
||||
/* Increment read pointer (wrap if needed) */
|
||||
ReceiveBufferTail = (ReceiveBufferTail + 1) % RECEIVEBUFFERSIZE;
|
||||
}
|
||||
/* printf("Discarded : /%02x/\n", return_byte); */
|
||||
|
||||
return(return_byte);
|
||||
}
|
||||
return(return_byte);
|
||||
}
|
||||
|
||||
|
||||
/*-OK--------------------------------------------------------------------------*/
|
||||
/** return number of bytes available for peeking in receive buffer */
|
||||
int PeekBytesAvail(void)
|
||||
{
|
||||
int return_value;
|
||||
|
||||
return_value=ReceiveBufferHead-ReceiveBufferTailPeek;
|
||||
{
|
||||
int avail_bytes = ReceiveBufferHead - ReceiveBufferTailPeek;
|
||||
|
||||
if (avail_bytes < 0)
|
||||
avail_bytes += RECEIVEBUFFERSIZE;
|
||||
|
||||
if(return_value<0)
|
||||
return_value+=RECEIVEBUFFERSIZE;
|
||||
return(avail_bytes % RECEIVEBUFFERSIZE);
|
||||
}
|
||||
|
||||
return(return_value);
|
||||
}
|
||||
|
||||
/*-OK--------------------------------------------------------------------------*/
|
||||
/** sync peek pointer with read pointer */
|
||||
void Sync_Peek_Pointer(void)
|
||||
{
|
||||
ReceiveBufferTailPeek=ReceiveBufferTail;
|
||||
}
|
||||
{
|
||||
ReceiveBufferTailPeek = ReceiveBufferTail;
|
||||
}
|
||||
|
||||
/*-OK--------------------------------------------------------------------------*/
|
||||
|
||||
/** accept ppeked data by syncing the read pointer to the peek pointer */
|
||||
void AcceptPeekedData(void)
|
||||
{
|
||||
ReceiveBufferTail=ReceiveBufferTailPeek;
|
||||
}
|
||||
{
|
||||
ReceiveBufferTail = ReceiveBufferTailPeek;
|
||||
}
|
||||
|
||||
/*-OK--------------------------------------------------------------------------*/
|
||||
|
||||
/** peek next byte from receive buffer (return '\0' if buffer is empty) */
|
||||
unsigned char PeekByte(void)
|
||||
{
|
||||
unsigned char return_byte;
|
||||
{
|
||||
unsigned char return_byte = '\0';
|
||||
|
||||
return_byte=0;
|
||||
/* wrap peek pointer to the receive buffer */
|
||||
ReceiveBufferTailPeek %= RECEIVEBUFFERSIZE;
|
||||
|
||||
/* See if there are any more bytes available. */
|
||||
if(ReceiveBufferTailPeek!=ReceiveBufferHead)
|
||||
{
|
||||
/* There is at least one more byte. */
|
||||
return_byte=SerialReceiveBuffer[ReceiveBufferTailPeek];
|
||||
/* See if there are any more bytes available. */
|
||||
if (ReceiveBufferTailPeek != (ReceiveBufferHead % RECEIVEBUFFERSIZE)) {
|
||||
/* There is at least one more byte. */
|
||||
return_byte = SerialReceiveBuffer[ReceiveBufferTailPeek];
|
||||
|
||||
/* Increment the pointer and wrap if needed. */
|
||||
ReceiveBufferTailPeek++;
|
||||
if(RECEIVEBUFFERSIZE<=ReceiveBufferTailPeek)
|
||||
ReceiveBufferTailPeek=0;
|
||||
}
|
||||
/* Increment the peek pointer (wrap if needed). */
|
||||
ReceiveBufferTailPeek = (ReceiveBufferTailPeek + 1) % RECEIVEBUFFERSIZE;
|
||||
}
|
||||
|
||||
return(return_byte);
|
||||
}
|
||||
return(return_byte);
|
||||
}
|
||||
|
||||
|
||||
void treat_packet(void)
|
||||
{
|
||||
if(incoming_command.command==0x80) {
|
||||
AddKeyToKeyRing(incoming_command.data[0]);
|
||||
if (incoming_command.command == 0x80) {
|
||||
AddKeyToKeyRing(incoming_command.data[0]);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -419,7 +400,7 @@ if(incoming_command.command==0x80) {
|
||||
*/
|
||||
|
||||
/* This tossed byte is not in use, it's going to be removed. */
|
||||
int tossed=0;
|
||||
int tossed = 0;
|
||||
|
||||
/* Let's return
|
||||
* O if we have no message but we should try again immediatly
|
||||
@@ -434,127 +415,129 @@ int tossed=0;
|
||||
#define GIVE_UP 2
|
||||
|
||||
unsigned char check_for_packet(int fd, unsigned char expected_length)
|
||||
{
|
||||
int i;
|
||||
int testcrc;
|
||||
{
|
||||
int i;
|
||||
int testcrc;
|
||||
|
||||
Sync_Read_Buffer(fd, expected_length);
|
||||
Sync_Read_Buffer(fd, expected_length);
|
||||
|
||||
//First off, there must be at least 4 bytes available in the input stream
|
||||
//for there to be a valid command in it (command, length, no data, CRC).
|
||||
if(BytesAvail()<4) {
|
||||
/* printf("Not enough byte available for even the smallest message.\n"); */
|
||||
return(GIVE_UP); /* We don't need to retry before more byte are received */
|
||||
}
|
||||
//First off, there must be at least 4 bytes available in the input stream
|
||||
//for there to be a valid command in it (command, length, no data, CRC).
|
||||
if (BytesAvail() < 4) {
|
||||
/* printf("Not enough byte available for even the smallest message.\n"); */
|
||||
return(GIVE_UP); /* We don't need to retry before more byte are received */
|
||||
}
|
||||
|
||||
/* Look into the buffer without removing the data. */
|
||||
Sync_Peek_Pointer();
|
||||
/* Look into the buffer without removing the data. */
|
||||
Sync_Peek_Pointer();
|
||||
|
||||
//Only commands 0 through MAX_COMMAND are valid.
|
||||
if(MAX_COMMAND<(0x3F&(incoming_command.command=PeekByte())))
|
||||
{
|
||||
/* Throw out one byte of garbage. Next pass through should re-sync. */
|
||||
DiscardGetByte();
|
||||
tossed++;
|
||||
/* printf("###: Unknown command.\n"); */
|
||||
return(TRY_AGAIN);
|
||||
}
|
||||
/* There is a valid command byte. Get the data_length. */
|
||||
/* The data length must be within reason. */
|
||||
if(MAX_DATA_LENGTH<(incoming_command.data_length=PeekByte()))
|
||||
{
|
||||
//Throw out one byte of garbage. Next pass through should re-sync.
|
||||
DiscardGetByte();
|
||||
tossed++;
|
||||
/* printf("###: Too long packet: %d.\n", incoming_command.data_length); */
|
||||
return(TRY_AGAIN);
|
||||
}
|
||||
/* look at potential command byte */
|
||||
incoming_command.command = PeekByte();
|
||||
|
||||
//Now there must be at least incoming_command.data_length+sizeof(CRC) bytes
|
||||
//still available for us to continue.
|
||||
if((int)PeekBytesAvail()<(incoming_command.data_length+2)) {
|
||||
//It looked like a valid start of a packet, but it does not look
|
||||
//like the complete packet has been received yet.
|
||||
/* printf("Not enough read to check the complete message.\n"); */
|
||||
return(GIVE_UP); /* Let's not return until more byte are available */
|
||||
}
|
||||
/* Only commands 0 through MAX_COMMAND are valid */
|
||||
if (MAX_COMMAND < (0x3F & incoming_command.command)) {
|
||||
/* Throw out one byte of garbage. Next pass through should re-sync. */
|
||||
DiscardGetByte();
|
||||
tossed++;
|
||||
/* printf("###: Unknown command.\n"); */
|
||||
return(TRY_AGAIN);
|
||||
}
|
||||
|
||||
/* There is a valid command byte. Get the data_length. */
|
||||
incoming_command.data_length = PeekByte();
|
||||
|
||||
/* The data length must be within reason. */
|
||||
if (MAX_DATA_LENGTH < incoming_command.data_length) {
|
||||
//Throw out one byte of garbage. Next pass through should re-sync.
|
||||
DiscardGetByte();
|
||||
tossed++;
|
||||
/* printf("###: Too long packet: %d.\n", incoming_command.data_length); */
|
||||
return(TRY_AGAIN);
|
||||
}
|
||||
|
||||
/* There is enough data to make a packet. Transfer over the data. */
|
||||
for(i=0;i<incoming_command.data_length;i++)
|
||||
incoming_command.data[i]=PeekByte();
|
||||
// Now there must be at least incoming_command.data_length + sizeof(CRC) bytes
|
||||
// still available for us to continue.
|
||||
if ((int) PeekBytesAvail() < (incoming_command.data_length + 2)) {
|
||||
//It looked like a valid start of a packet, but it does not look
|
||||
//like the complete packet has been received yet.
|
||||
/* printf("Not enough read to check the complete message.\n"); */
|
||||
return(GIVE_UP); /* Let's not return until more byte are available */
|
||||
}
|
||||
|
||||
//Now move over the CRC.
|
||||
incoming_command.CRC.as_bytes[0]=PeekByte();
|
||||
incoming_command.CRC.as_bytes[1]=PeekByte();
|
||||
//Now check the CRC.
|
||||
/* There is enough data to make a packet. Transfer over the data. */
|
||||
for (i = 0; i < incoming_command.data_length; i++)
|
||||
incoming_command.data[i] = PeekByte();
|
||||
|
||||
//Compute the expected CheckSum
|
||||
testcrc = get_crc((unsigned char *)&incoming_command,
|
||||
incoming_command.data_length+2, 0xFFFF);
|
||||
testcrc = testcrc & 0xFFFF; /* This is TRICKY */
|
||||
//Now move over the CRC.
|
||||
incoming_command.CRC.as_bytes[0] = PeekByte();
|
||||
incoming_command.CRC.as_bytes[1] = PeekByte();
|
||||
//Now check the CRC.
|
||||
|
||||
if(incoming_command.CRC.as_word==testcrc)
|
||||
{
|
||||
//This is a good packet. I'll be horn swaggled. Remove the packet
|
||||
//from the serial buffer.
|
||||
AcceptPeekedData();
|
||||
//Let our caller know that incoming_command has good stuff in it.
|
||||
/* print_packet(&outgoing_response); */
|
||||
//Compute the expected CheckSum
|
||||
testcrc = get_crc((unsigned char *) &incoming_command,
|
||||
incoming_command.data_length+2, 0xFFFF);
|
||||
testcrc = testcrc & 0xFFFF; /* This is TRICKY */
|
||||
|
||||
if (incoming_command.CRC.as_word == testcrc) {
|
||||
//This is a good packet. I'll be horn swaggled. Remove the packet
|
||||
//from the serial buffer.
|
||||
AcceptPeekedData();
|
||||
//Let our caller know that incoming_command has good stuff in it.
|
||||
/* print_packet(&outgoing_response); */
|
||||
|
||||
return(GOOD_MSG);
|
||||
}
|
||||
|
||||
/* The CRC did not match. Toss out one byte of garbage.
|
||||
* Next pass through should re-sync.
|
||||
*/
|
||||
tossed++;
|
||||
DiscardGetByte();
|
||||
/* printf("###: Wrong CheckSum. computed/real %04x:%04x \n",
|
||||
testcrc, incoming_command.CRC.as_word); */
|
||||
return(TRY_AGAIN);
|
||||
}
|
||||
|
||||
return(GOOD_MSG);
|
||||
}
|
||||
|
||||
/* The CRC did not match. Toss out one byte of garbage.
|
||||
* Next pass through should re-sync.
|
||||
*/
|
||||
tossed++;
|
||||
DiscardGetByte();
|
||||
/* printf("###: Wrong CheckSum. computed/real %04x:%04x \n",
|
||||
testcrc, incoming_command.CRC.as_word); */
|
||||
return(TRY_AGAIN);
|
||||
}
|
||||
//============================================================================
|
||||
|
||||
/* I should use the value GIVE_UP and not reenter if there is no extra
|
||||
* byte readed from the serial port
|
||||
* byte read from the serial port
|
||||
*/
|
||||
int test_packet(int fd)
|
||||
{
|
||||
int is_msg;
|
||||
int is_msg;
|
||||
|
||||
is_msg=check_for_packet(fd, MAX_DATA_LENGTH);
|
||||
while (is_msg!=GIVE_UP) {
|
||||
if (is_msg==GOOD_MSG) {
|
||||
treat_packet();
|
||||
is_msg = check_for_packet(fd, MAX_DATA_LENGTH);
|
||||
while (is_msg != GIVE_UP) {
|
||||
if (is_msg == GOOD_MSG)
|
||||
treat_packet();
|
||||
|
||||
is_msg = check_for_packet(fd, MAX_DATA_LENGTH);
|
||||
}
|
||||
is_msg=check_for_packet(fd, MAX_DATA_LENGTH);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
//============================================================================
|
||||
|
||||
/*
|
||||
* This is a debuging function.
|
||||
* It should be removed or compiled in conditionaly.
|
||||
* Currently it is still using printf for debuging.
|
||||
* This is a debugging function.
|
||||
* It should be removed or compiled in conditionally.
|
||||
* Currently it is still using printf for debugging.
|
||||
*/
|
||||
|
||||
void print_packet(COMMAND_PACKET *packet)
|
||||
{
|
||||
int i, cmd, top, len;
|
||||
int i, cmd, top, len;
|
||||
|
||||
top=(0xC0&(packet->command)) >> 6;
|
||||
cmd=(0x3F&(packet->command));
|
||||
len=packet->data_length;
|
||||
top = (0xC0 & (packet->command)) >> 6;
|
||||
cmd = (0x3F & (packet->command));
|
||||
len = packet->data_length;
|
||||
|
||||
printf("Message (%d,%d) %d [", top, cmd, len);
|
||||
printf("Message (%d,%d) %d [", top, cmd, len);
|
||||
|
||||
//There is enough data to make a packet. Transfer over the data.
|
||||
for(i=0;i<packet->data_length;i++)
|
||||
printf(" %02x", packet->data[i]);
|
||||
//There is enough data to make a packet. Transfer over the data.
|
||||
for (i = 0; i < packet->data_length; i++)
|
||||
printf(" %02x", packet->data[i]);
|
||||
|
||||
printf(" ] %02x %02x .\n", packet->CRC.as_bytes[0], packet->CRC.as_bytes[1]);
|
||||
printf(" ] %02x %02x .\n", packet->CRC.as_bytes[0], packet->CRC.as_bytes[1]);
|
||||
}
|
||||
//============================================================================
|
||||
|
||||
|
||||
Reference in New Issue
Block a user