dataframe.cpp 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /*
  2. * @file dataframe.cpp
  3. * @brief Simple Data Frame
  4. *
  5. * @date: 31. 12. 2022
  6. * @author: juraj
  7. */
  8. /**
  9. * @mainpage DataFrame library
  10. *
  11. Create formatted frame from basic types:
  12. - uint8_t, int8_t => 1Byte
  13. - uint16_t, int16_t => 2Bytes
  14. - uint32_t, int32_t => 4Bytes
  15. - float => 4Bytes
  16. Data are stared in Little Endian format.
  17. Structure of data frame:
  18. - starting byte (0xCC)
  19. - length of frame: count of bytes in payload. The first 2 bytes is not
  20. included to overal length. Maximum length: 254 (0xFE)
  21. - payload
  22. - CRC8
  23. The library contans universal function:
  24. - `uint8_t crc8(uint8_t crc, uint8_t Size, uint8_t *Buffer);`
  25. - crc - inital value for CRC computig. For new frame, use 0x0
  26. - Size - size of data Buffer
  27. Detailed description of class: DataFrame
  28. \code{.c}
  29. void main(){
  30. uint8_t data[24];
  31. DataFrame packet(data_packet, sizeof(data_packet), TYPE_HEADER_1B,
  32. CRC_ON);
  33. packet.AddUint8(0xAB);
  34. packet.AddUint16(65874);
  35. packet.AddInt8(-45874);
  36. packet.AddUint32(0x12345678);
  37. packet.AddInt32(-0xA2345678);
  38. packet.AddFloat(0.265);
  39. packet.AddFloat(-3.1415);
  40. // resulted length is 23B (20B of data, 1B breamble, 1B lenfth byte,1B
  41. CRC) int data_length = packet.Commit(); if (packet.getError() == ERROR_NONE) {
  42. // frame[1] contain packet length. The real value is 20
  43. uint8_t* frame = packet.GetFrame();
  44. }
  45. }
  46. \endcode
  47. */
  48. #include "dataframe.h"
  49. /**
  50. * @brief Helper function to compute CRC.
  51. * @param crc - initial CRC, use 0 if dont know about it.
  52. * @param Size - size of input buffer
  53. * @param Buffer - input array with bytes
  54. */
  55. uint8_t crc8(uint8_t crc, uint8_t Size, uint8_t *Buffer) {
  56. // https://community.st.com/s/question/0D50X0000CDmAkpSQF/calculate-crc8
  57. static const unsigned char CrcTable[] = {
  58. // 0x97 Polynomial Table, 8-bit,
  59. 0x00, 0x97, 0xB9, 0x2E, 0xE5, 0x72, 0x5C, 0xCB, 0x5D, 0xCA, 0xE4, 0x73,
  60. 0xB8, 0x2F, 0x01, 0x96, 0xBA, 0x2D, 0x03, 0x94, 0x5F, 0xC8, 0xE6, 0x71,
  61. 0xE7, 0x70, 0x5E, 0xC9, 0x02, 0x95, 0xBB, 0x2C, 0xE3, 0x74, 0x5A, 0xCD,
  62. 0x06, 0x91, 0xBF, 0x28, 0xBE, 0x29, 0x07, 0x90, 0x5B, 0xCC, 0xE2, 0x75,
  63. 0x59, 0xCE, 0xE0, 0x77, 0xBC, 0x2B, 0x05, 0x92, 0x04, 0x93, 0xBD, 0x2A,
  64. 0xE1, 0x76, 0x58, 0xCF, 0x51, 0xC6, 0xE8, 0x7F, 0xB4, 0x23, 0x0D, 0x9A,
  65. 0x0C, 0x9B, 0xB5, 0x22, 0xE9, 0x7E, 0x50, 0xC7, 0xEB, 0x7C, 0x52, 0xC5,
  66. 0x0E, 0x99, 0xB7, 0x20, 0xB6, 0x21, 0x0F, 0x98, 0x53, 0xC4, 0xEA, 0x7D,
  67. 0xB2, 0x25, 0x0B, 0x9C, 0x57, 0xC0, 0xEE, 0x79, 0xEF, 0x78, 0x56, 0xC1,
  68. 0x0A, 0x9D, 0xB3, 0x24, 0x08, 0x9F, 0xB1, 0x26, 0xED, 0x7A, 0x54, 0xC3,
  69. 0x55, 0xC2, 0xEC, 0x7B, 0xB0, 0x27, 0x09, 0x9E, 0xA2, 0x35, 0x1B, 0x8C,
  70. 0x47, 0xD0, 0xFE, 0x69, 0xFF, 0x68, 0x46, 0xD1, 0x1A, 0x8D, 0xA3, 0x34,
  71. 0x18, 0x8F, 0xA1, 0x36, 0xFD, 0x6A, 0x44, 0xD3, 0x45, 0xD2, 0xFC, 0x6B,
  72. 0xA0, 0x37, 0x19, 0x8E, 0x41, 0xD6, 0xF8, 0x6F, 0xA4, 0x33, 0x1D, 0x8A,
  73. 0x1C, 0x8B, 0xA5, 0x32, 0xF9, 0x6E, 0x40, 0xD7, 0xFB, 0x6C, 0x42, 0xD5,
  74. 0x1E, 0x89, 0xA7, 0x30, 0xA6, 0x31, 0x1F, 0x88, 0x43, 0xD4, 0xFA, 0x6D,
  75. 0xF3, 0x64, 0x4A, 0xDD, 0x16, 0x81, 0xAF, 0x38, 0xAE, 0x39, 0x17, 0x80,
  76. 0x4B, 0xDC, 0xF2, 0x65, 0x49, 0xDE, 0xF0, 0x67, 0xAC, 0x3B, 0x15, 0x82,
  77. 0x14, 0x83, 0xAD, 0x3A, 0xF1, 0x66, 0x48, 0xDF, 0x10, 0x87, 0xA9, 0x3E,
  78. 0xF5, 0x62, 0x4C, 0xDB, 0x4D, 0xDA, 0xF4, 0x63, 0xA8, 0x3F, 0x11, 0x86,
  79. 0xAA, 0x3D, 0x13, 0x84, 0x4F, 0xD8, 0xF6, 0x61, 0xF7, 0x60, 0x4E, 0xD9,
  80. 0x12, 0x85, 0xAB, 0x3C};
  81. while (Size--) {
  82. crc = crc ^ *Buffer++; // Apply Byte
  83. crc = CrcTable[crc & 0xFF]; // One round of 8-bits
  84. }
  85. if (crc == 0) {
  86. crc = 1;
  87. }
  88. return (crc);
  89. }
  90. DataFrame::DataFrame(uint8_t *frame, uint8_t size, DataframeType_t type,
  91. DataframeCrc_t useCrc) {
  92. _frame = frame;
  93. _capacity = size;
  94. _type = type;
  95. _crcUse = useCrc;
  96. this->Init();
  97. }
  98. void DataFrame::Init(void) {
  99. _error = ERROR_NONE;
  100. if (_type == TYPE_HEADER_1B) {
  101. _frame[0] = HEADER_CHAR1;
  102. _frame[1] = 0; // length of packet
  103. _length = 2;
  104. }
  105. if (_type == TYPE_HEADER_2B) {
  106. _frame[0] = HEADER_CHAR1;
  107. _frame[1] = HEADER_CHAR2;
  108. _frame[2] = 0; // length of packet
  109. _length = 3;
  110. }
  111. if (_type == TYPE_PLAIN) {
  112. _frame[1] = 0; // length of packet
  113. _length = 1;
  114. }
  115. }
  116. bool DataFrame::AddUint8(uint8_t d) {
  117. if ((_length + 1) >= _capacity) {
  118. _error = ERROR_OVERFLOW;
  119. return false;
  120. }
  121. _frame[_length] = d;
  122. _length++;
  123. return true;
  124. }
  125. bool DataFrame::AddUint16(uint16_t d) {
  126. if ((_length + 2) >= _capacity) {
  127. _error = ERROR_OVERFLOW;
  128. return false;
  129. }
  130. _frame[_length++] = d & 0xFF;
  131. _frame[_length++] = (d >> 8) & 0xFF;
  132. return true;
  133. }
  134. bool DataFrame::AddUint32(uint32_t d) {
  135. if ((_length + 4) >= _capacity) {
  136. _error = ERROR_OVERFLOW;
  137. return false;
  138. }
  139. _frame[_length++] = d & 0xFF;
  140. _frame[_length++] = (d >> 8) & 0xFF;
  141. _frame[_length++] = (d >> 16) & 0xFF;
  142. _frame[_length++] = (d >> 24) & 0xFF;
  143. return true;
  144. }
  145. bool DataFrame::AddInt8(int8_t d) { return this->AddUint8((uint8_t)d); }
  146. bool DataFrame::AddInt16(int16_t d) { return this->AddUint16((uint16_t)d); }
  147. bool DataFrame::AddInt32(int32_t d) { return this->AddUint32((uint32_t)d); }
  148. bool DataFrame::AddFloat(float f) {
  149. if ((_length + 4) >= _capacity) {
  150. _error = ERROR_OVERFLOW;
  151. return false;
  152. }
  153. uint8_t *ptr;
  154. ptr = (unsigned char *)&f;
  155. _frame[_length++] = *(ptr);
  156. _frame[_length++] = *(ptr + 1);
  157. _frame[_length++] = *(ptr + 2);
  158. _frame[_length++] = *(ptr + 3);
  159. return true;
  160. }
  161. uint8_t DataFrame::Commit(void) {
  162. if (_type == TYPE_HEADER_1B) {
  163. // compute _length
  164. if (_crcUse == CRC_ON) {
  165. _length++;
  166. _frame[_length - 1] = crc8(0, _length - 1, _frame);
  167. }
  168. _frame[1] = _length - 2;
  169. // length of payload: from byte 2 to CRC byte (the last)
  170. }
  171. if (_type == TYPE_HEADER_2B) {
  172. // compute _length
  173. if (_crcUse == CRC_ON) {
  174. _length++;
  175. _frame[_length - 1] = crc8(0, _length - 1, _frame);
  176. // length of payload: from byte 2 to CRC byte (the last)
  177. }
  178. _frame[2] = _length - 3;
  179. }
  180. if (_type == TYPE_PLAIN) {
  181. _frame[0] = _length;
  182. }
  183. return _length;
  184. }
  185. DataframeError_t DataFrame::getError(void) { return _error; }
  186. uint8_t *DataFrame::GetFrame(void) { return _frame; }