Rev 391 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 391 | Rev 393 | ||
---|---|---|---|
Line 15... | Line 15... | ||
15 | int decLen; |
15 | int decLen; |
16 | }; |
16 | }; |
Line 17... | Line 17... | ||
17 | 17 | ||
18 | class Parser { |
18 | class Parser { |
19 | public: |
19 | public: |
20 | bool decode64(sRxData &rx, unsigned int length); |
20 | static bool decode64(sRxData &rx); |
Line 21... | Line 21... | ||
21 | string encode64(char data[150],unsigned int length); |
21 | static string encode64(char data[150],unsigned int length); |
22 | 22 | ||
Line 23... | Line 23... | ||
23 | string add_CRC(char * TX, int length); |
23 | static string add_CRC(char * TX, int length); |
Line 24... | Line 24... | ||
24 | string check_CRC(char * RX, int length); |
24 | static string check_CRC(char * RX, int length); |
25 | 25 |