test_uart.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. #include <string.h>
  2. #include "unity.h"
  3. #include "test_utils.h" // unity_send_signal
  4. #include "driver/uart.h" // for the uart driver access
  5. #include "esp_log.h"
  6. #include "esp_system.h" // for uint32_t esp_random()
  7. #define UART_TAG "Uart"
  8. #define UART_NUM1 (UART_NUM_1)
  9. #define BUF_SIZE (100)
  10. #define UART1_RX_PIN (22)
  11. #define UART1_TX_PIN (23)
  12. #define UART_BAUD_11520 (11520)
  13. #define UART_BAUD_115200 (115200)
  14. #define TOLERANCE (0.02) //baud rate error tolerance 2%.
  15. #define UART_TOLERANCE_CHECK(val, uper_limit, lower_limit) ( (val) <= (uper_limit) && (val) >= (lower_limit) )
  16. // RTS for RS485 Half-Duplex Mode manages DE/~RE
  17. #define UART1_RTS_PIN (18)
  18. // Number of packets to be send during test
  19. #define PACKETS_NUMBER (10)
  20. // Wait timeout for uart driver
  21. #define PACKET_READ_TICS (1000 / portTICK_RATE_MS)
  22. // The table for fast CRC16 calculation
  23. static const uint8_t crc_hi[] = {
  24. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  25. 0x00, 0xC1, 0x81,
  26. 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81,
  27. 0x40, 0x01, 0xC0,
  28. 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1,
  29. 0x81, 0x40, 0x01,
  30. 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01,
  31. 0xC0, 0x80, 0x41,
  32. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
  33. 0x00, 0xC1, 0x81,
  34. 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80,
  35. 0x41, 0x01, 0xC0,
  36. 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
  37. 0x80, 0x41, 0x01,
  38. 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00,
  39. 0xC1, 0x81, 0x40,
  40. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  41. 0x00, 0xC1, 0x81,
  42. 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81,
  43. 0x40, 0x01, 0xC0,
  44. 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1,
  45. 0x81, 0x40, 0x01,
  46. 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01,
  47. 0xC0, 0x80, 0x41,
  48. 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  49. 0x00, 0xC1, 0x81,
  50. 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81,
  51. 0x40, 0x01, 0xC0,
  52. 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
  53. 0x80, 0x41, 0x01,
  54. 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01,
  55. 0xC0, 0x80, 0x41,
  56. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  57. 0x00, 0xC1, 0x81,
  58. 0x40
  59. };
  60. static const uint8_t crc_low[] = {
  61. 0x00, 0xC0, 0xC1, 0x01, 0xC3, 0x03, 0x02, 0xC2, 0xC6, 0x06, 0x07, 0xC7,
  62. 0x05, 0xC5, 0xC4,
  63. 0x04, 0xCC, 0x0C, 0x0D, 0xCD, 0x0F, 0xCF, 0xCE, 0x0E, 0x0A, 0xCA, 0xCB,
  64. 0x0B, 0xC9, 0x09,
  65. 0x08, 0xC8, 0xD8, 0x18, 0x19, 0xD9, 0x1B, 0xDB, 0xDA, 0x1A, 0x1E, 0xDE,
  66. 0xDF, 0x1F, 0xDD,
  67. 0x1D, 0x1C, 0xDC, 0x14, 0xD4, 0xD5, 0x15, 0xD7, 0x17, 0x16, 0xD6, 0xD2,
  68. 0x12, 0x13, 0xD3,
  69. 0x11, 0xD1, 0xD0, 0x10, 0xF0, 0x30, 0x31, 0xF1, 0x33, 0xF3, 0xF2, 0x32,
  70. 0x36, 0xF6, 0xF7,
  71. 0x37, 0xF5, 0x35, 0x34, 0xF4, 0x3C, 0xFC, 0xFD, 0x3D, 0xFF, 0x3F, 0x3E,
  72. 0xFE, 0xFA, 0x3A,
  73. 0x3B, 0xFB, 0x39, 0xF9, 0xF8, 0x38, 0x28, 0xE8, 0xE9, 0x29, 0xEB, 0x2B,
  74. 0x2A, 0xEA, 0xEE,
  75. 0x2E, 0x2F, 0xEF, 0x2D, 0xED, 0xEC, 0x2C, 0xE4, 0x24, 0x25, 0xE5, 0x27,
  76. 0xE7, 0xE6, 0x26,
  77. 0x22, 0xE2, 0xE3, 0x23, 0xE1, 0x21, 0x20, 0xE0, 0xA0, 0x60, 0x61, 0xA1,
  78. 0x63, 0xA3, 0xA2,
  79. 0x62, 0x66, 0xA6, 0xA7, 0x67, 0xA5, 0x65, 0x64, 0xA4, 0x6C, 0xAC, 0xAD,
  80. 0x6D, 0xAF, 0x6F,
  81. 0x6E, 0xAE, 0xAA, 0x6A, 0x6B, 0xAB, 0x69, 0xA9, 0xA8, 0x68, 0x78, 0xB8,
  82. 0xB9, 0x79, 0xBB,
  83. 0x7B, 0x7A, 0xBA, 0xBE, 0x7E, 0x7F, 0xBF, 0x7D, 0xBD, 0xBC, 0x7C, 0xB4,
  84. 0x74, 0x75, 0xB5,
  85. 0x77, 0xB7, 0xB6, 0x76, 0x72, 0xB2, 0xB3, 0x73, 0xB1, 0x71, 0x70, 0xB0,
  86. 0x50, 0x90, 0x91,
  87. 0x51, 0x93, 0x53, 0x52, 0x92, 0x96, 0x56, 0x57, 0x97, 0x55, 0x95, 0x94,
  88. 0x54, 0x9C, 0x5C,
  89. 0x5D, 0x9D, 0x5F, 0x9F, 0x9E, 0x5E, 0x5A, 0x9A, 0x9B, 0x5B, 0x99, 0x59,
  90. 0x58, 0x98, 0x88,
  91. 0x48, 0x49, 0x89, 0x4B, 0x8B, 0x8A, 0x4A, 0x4E, 0x8E, 0x8F, 0x4F, 0x8D,
  92. 0x4D, 0x4C, 0x8C,
  93. 0x44, 0x84, 0x85, 0x45, 0x87, 0x47, 0x46, 0x86, 0x82, 0x42, 0x43, 0x83,
  94. 0x41, 0x81, 0x80,
  95. 0x40
  96. };
  97. static void uart_config(uint32_t baud_rate, bool use_ref_tick)
  98. {
  99. uart_config_t uart_config = {
  100. .baud_rate = baud_rate,
  101. .data_bits = UART_DATA_8_BITS,
  102. .parity = UART_PARITY_DISABLE,
  103. .stop_bits = UART_STOP_BITS_1,
  104. .flow_ctrl = UART_HW_FLOWCTRL_DISABLE,
  105. .use_ref_tick = use_ref_tick,
  106. };
  107. uart_param_config(UART_NUM1, &uart_config);
  108. uart_set_pin(UART_NUM1, UART1_TX_PIN, UART1_RX_PIN, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE);
  109. uart_driver_install(UART_NUM1, BUF_SIZE * 2, BUF_SIZE * 2, 20, NULL, 0);
  110. }
  111. TEST_CASE("test uart get baud-rate","[uart]")
  112. {
  113. uint32_t baud_rate1 = 0;
  114. uint32_t baud_rate2 = 0;
  115. printf("init uart%d, use reftick, baud rate : %d\n", (int)UART_NUM1, (int)UART_BAUD_11520);
  116. uart_config(UART_BAUD_11520, true);
  117. uart_get_baudrate(UART_NUM1, &baud_rate1);
  118. printf("init uart%d, unuse reftick, baud rate : %d\n", (int)UART_NUM1, (int)UART_BAUD_115200);
  119. uart_config(UART_BAUD_115200, false);
  120. uart_get_baudrate(UART_NUM1, &baud_rate2);
  121. printf("get baud rate when use reftick: %d\n", (int)baud_rate1);
  122. printf("get baud rate when don't use reftick: %d\n", (int)baud_rate2);
  123. uart_driver_delete(UART_NUM1);
  124. TEST_ASSERT(UART_TOLERANCE_CHECK(baud_rate1, (1.0 + TOLERANCE)*UART_BAUD_11520, (1.0 - TOLERANCE)*UART_BAUD_11520))
  125. TEST_ASSERT(UART_TOLERANCE_CHECK(baud_rate2, (1.0 + TOLERANCE)*UART_BAUD_115200, (1.0 - TOLERANCE)*UART_BAUD_115200))
  126. ESP_LOGI(UART_TAG, "get baud-rate test passed ....\n");
  127. }
  128. // Calculate buffer checksum using tables
  129. // The checksum CRC16 algorithm is specific
  130. // for Modbus standard and uses polynomial value = 0xA001
  131. static uint16_t get_buffer_crc16( uint8_t * frame_ptr, uint16_t length )
  132. {
  133. TEST_ASSERT( frame_ptr != NULL);
  134. uint8_t crc_hi_byte = 0xFF;
  135. uint8_t crc_low_byte = 0xFF;
  136. int index;
  137. while ( length-- )
  138. {
  139. index = crc_low_byte ^ *(frame_ptr++);
  140. crc_low_byte = crc_hi_byte ^ crc_hi[index];
  141. crc_hi_byte = crc_low[index];
  142. }
  143. return ((crc_hi_byte << 8) | crc_low_byte);
  144. }
  145. // Fill the buffer with random numbers and apply CRC16 at the end
  146. static uint16_t buffer_fill_random(uint8_t *buffer, size_t length)
  147. {
  148. TEST_ASSERT( buffer != NULL);
  149. uint8_t *byte_buffer = (uint8_t *)buffer;
  150. uint32_t random;
  151. // Pcket is too short
  152. if (length < 4) {
  153. return 0;
  154. }
  155. for (int i = 0; i < length; i++) {
  156. if (i == 0 || i % 4 == 0) {
  157. // Generates random int32_t number
  158. random = esp_random();
  159. }
  160. // Place each byte of the uint32_t random number into buffer
  161. byte_buffer[i] = random >> ((i % 4) * 8);
  162. }
  163. // Get checksum of the buffer
  164. uint16_t crc = get_buffer_crc16((uint8_t*)byte_buffer, (length - 2));
  165. // Apply checksum bytes into packet
  166. byte_buffer[length - 2] = (uint8_t)(crc & 0xFF); // Set Low byte CRC
  167. byte_buffer[length - 1] = (uint8_t)(crc >> 8); // Set High byte CRC
  168. return crc;
  169. }
  170. static void rs485_init()
  171. {
  172. uart_config_t uart_config = {
  173. .baud_rate = UART_BAUD_115200,
  174. .data_bits = UART_DATA_8_BITS,
  175. .parity = UART_PARITY_DISABLE,
  176. .stop_bits = UART_STOP_BITS_1,
  177. .flow_ctrl = UART_HW_FLOWCTRL_DISABLE,
  178. .rx_flow_ctrl_thresh = 122,
  179. };
  180. printf("RS485 port initialization...\r\n");
  181. // Configure UART1 parameters
  182. uart_param_config(UART_NUM1, &uart_config);
  183. // Set UART1 pins(TX: IO4, RX: I05, RTS: IO18, CTS: IO19)
  184. uart_set_pin(UART_NUM1, UART1_TX_PIN, UART1_RX_PIN, UART1_RTS_PIN, UART_PIN_NO_CHANGE);
  185. // Install UART driver (we don't need an event queue here)
  186. uart_driver_install(UART_NUM1, BUF_SIZE * 2, 0, 0, NULL, 0);
  187. // Setup rs485 half duplex mode
  188. //uart_set_rs485_hd_mode(uart_num, true);
  189. uart_set_mode(UART_NUM1, UART_MODE_RS485_HALF_DUPLEX);
  190. }
  191. static esp_err_t print_packet_data(const char *str, uint8_t *buffer, uint16_t buffer_size)
  192. {
  193. TEST_ASSERT( buffer != NULL);
  194. TEST_ASSERT( str != NULL);
  195. // Calculate the checksum of the buffer
  196. uint16_t crc16_calc = get_buffer_crc16(buffer, (buffer_size - 2));
  197. uint16_t crc16_in = ((uint16_t)(buffer[buffer_size - 1]) << 8) | buffer[buffer_size - 2];
  198. const char* state_str = (crc16_in != crc16_calc) ? "incorrect " : "correct ";
  199. // Print an array of data
  200. printf("%s%s RS485 packet = [ ", str, state_str);
  201. for (int i = 0; i < buffer_size; i++) {
  202. printf("0x%.2X ", (uint8_t)buffer[i]);
  203. }
  204. printf(" ]\r\n");
  205. printf("crc_in = 0x%.4X\r\n", (uint16_t)crc16_in);
  206. printf("crc_calc = 0x%.4X\r\n", (uint16_t)crc16_calc);
  207. esp_err_t result = (crc16_in != crc16_calc) ? ESP_ERR_INVALID_CRC : ESP_OK;
  208. return result;
  209. }
  210. // Slave test case for multi device
  211. static void rs485_slave()
  212. {
  213. rs485_init();
  214. uint8_t* slave_data = (uint8_t*) malloc(BUF_SIZE);
  215. uint16_t err_count = 0, good_count = 0;
  216. printf("Start recieve loop.\r\n");
  217. unity_send_signal("Slave_ready");
  218. unity_wait_for_signal("Master_started");
  219. for(int pack_count = 0; pack_count < PACKETS_NUMBER; pack_count++) {
  220. //Read slave_data from UART
  221. int len = uart_read_bytes(UART_NUM1, slave_data, BUF_SIZE, (PACKET_READ_TICS * 2));
  222. //Write slave_data back to UART
  223. if (len > 2) {
  224. esp_err_t status = print_packet_data("Received ", slave_data, len);
  225. // If recieved packet is correct then send it back
  226. if (status == ESP_OK) {
  227. uart_write_bytes(UART_NUM1, (char*)slave_data, len);
  228. good_count++;
  229. } else {
  230. printf("Incorrect packet received.\r\n");
  231. err_count++;
  232. }
  233. } else {
  234. printf("Incorrect data packet[%d] received.\r\n", pack_count);
  235. err_count++;
  236. }
  237. }
  238. printf("Test completed. Received packets = %d, errors = %d\r\n", good_count, err_count);
  239. // Wait for packet to be sent
  240. uart_wait_tx_done(UART_NUM1, PACKET_READ_TICS);
  241. free(slave_data);
  242. uart_driver_delete(UART_NUM1);
  243. TEST_ASSERT(err_count < 2);
  244. }
  245. // Master test of multi device test case.
  246. // It forms packet with random data, apply generated CRC16 and sends to slave.
  247. // If response recieved correctly from slave means RS485 channel works.
  248. static void rs485_master()
  249. {
  250. uint16_t err_count = 0, good_count = 0;
  251. rs485_init();
  252. uint8_t* master_buffer = (uint8_t*) malloc(BUF_SIZE);
  253. uint8_t* slave_buffer = (uint8_t*) malloc(BUF_SIZE);
  254. // The master test case should be synchronized with slave
  255. unity_wait_for_signal("Slave_ready");
  256. unity_send_signal("Master_started");
  257. printf("Start recieve loop.\r\n");
  258. for(int i = 0; i < PACKETS_NUMBER; i++) {
  259. // Form random buffer with CRC16
  260. buffer_fill_random(master_buffer, BUF_SIZE);
  261. // Print created packet for debugging
  262. esp_err_t status = print_packet_data("Send ", master_buffer, BUF_SIZE);
  263. TEST_ASSERT(status == ESP_OK);
  264. uart_write_bytes(UART_NUM1, (char*)master_buffer, BUF_SIZE);
  265. // Read translated packet from slave
  266. int len = uart_read_bytes(UART_NUM1, slave_buffer, BUF_SIZE, (PACKET_READ_TICS * 2));
  267. // Check if the received packet is too short
  268. if (len > 2) {
  269. // Print received packet and check checksum
  270. esp_err_t status = print_packet_data("Received ", slave_buffer, len);
  271. if (status == ESP_OK) {
  272. good_count++;
  273. printf("Received: %d\r\n", good_count);
  274. } else {
  275. err_count++;
  276. printf("Errors: %d\r\n", err_count);
  277. }
  278. }
  279. else {
  280. printf("Incorrect answer from slave.\r\n");
  281. err_count++;
  282. }
  283. }
  284. // Free the buffer and delete driver at the end
  285. free(master_buffer);
  286. uart_driver_delete(UART_NUM1);
  287. TEST_ASSERT(err_count <= 1);
  288. printf("Test completed. Received packets = %d, errors = %d\r\n", (uint16_t)good_count, (uint16_t)err_count);
  289. }
  290. /*
  291. * This multi devices test case verifies RS485 mode of the uart driver and checks
  292. * correctness of RS485 interface channel communication. It requires
  293. * RS485 bus driver hardware to be connected to boards.
  294. */
  295. TEST_CASE_MULTIPLE_DEVICES("RS485 half duplex uart multiple devices test.", "[driver][ignore]", rs485_master, rs485_slave);