Commit 7455cc65 authored by Claes Sjofors's avatar Claes Sjofors

Merge branch 'master' of pwrcvs:/data1/git/pwr

parents 2e3e7d54 24129261
......@@ -101,7 +101,7 @@ void add_checksum( byte *buf)
int check_checksum( byte size, byte id, byte type, byte *buf)
{
int i;
unsigned char sum = 0;
byte sum = 0;
sum ^= size;
sum ^= id;
......@@ -109,7 +109,7 @@ int check_checksum( byte size, byte id, byte type, byte *buf)
for ( i = 0; i < size - 4; i++)
sum ^= buf[i];
if ( buf[size-1] == sum)
if ( buf[size-4] == sum)
return 1;
return 0;
}
......@@ -135,6 +135,7 @@ void resetOutput()
int serialRead()
{
int num;
int csum;
num = Serial.available();
if ( num == 0)
......@@ -153,11 +154,10 @@ int serialRead()
for ( int i = 0; i < msgSize; i++)
msgData[i] = Serial.read();
if ( !check_checksum( msgSize, msgId, msgType, msgData))
return ARD__CHECKSUM;
csum = check_checksum( msgSize + 3, msgId, msgType, msgData);
if ( debug) {
rmsg[0] = msgSize - 1 + 3;
rmsg[0] = msgSize + 3 - 1;
rmsg[1] = msgId;
rmsg[2] = MSG_TYPE_DEBUG;
for ( int j = 0; j < msgSize-1; j++)
......@@ -165,6 +165,10 @@ int serialRead()
add_checksum( rmsg);
Serial.write( rmsg, rmsg[0]);
}
msgSize--;
if ( !csum)
return ARD__CHECKSUM;
return ARD__SUCCESS;
}
......
......@@ -300,7 +300,7 @@ static int send_connect_request( io_sLocal *local, pwr_sClass_Arduino_Uno *op, i
sts = write( local->fd, &msg, msg.size);
sts = receive( local->fd, msg.id, &rmsg, 21, op->Timeout, op);
sts = receive( local->fd, msg.id, &rmsg, 23, op->Timeout, op);
if ( sts & 1) {
if ( rmsg.type != ard_eMsgType_ConnectRes)
return IO__INITFAIL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment