implementation of parts of the unilynx protocol, for communicating with danfos photovoltaic inverters. Still BETA ! needs byte stuff/unstuff fixed, and some CRC are left out for niw...

Dependencies:   mbed

Committer:
morten_opprud
Date:
Tue Sep 04 05:48:43 2012 +0000
Revision:
2:de090b60d543
Parent:
0:66a099b01e08
cleaned a bit before comitting, !NOTE! byte stuffing/unstuffing still needs wors, also CRC on incoming data is to be done

Who changed what in which revision?

UserRevisionLine numberNew contents of line
morten_opprud 0:66a099b01e08 1 #ifndef CRC_H_
morten_opprud 0:66a099b01e08 2 #define CRC_H_
morten_opprud 0:66a099b01e08 3
morten_opprud 0:66a099b01e08 4 int pppfcs16( int fcs, char* pByte, int length );
morten_opprud 0:66a099b01e08 5 //short pppfcs16(short fcs, char* pByte, int length);
morten_opprud 0:66a099b01e08 6
morten_opprud 0:66a099b01e08 7 #endif /* CRC_H_ */