25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
280 B

  1. #ifndef __MODBUS_REC_SEND_H
  2. #define __MODBUS_REC_SEND_H
  3. #include "stm32f4xx.h"
  4. #include "modbus_parse.h"
  5. int8_t ChcekCrc16(uint16_t recCrc16, uint8_t *data, uint16_t length);
  6. void AddCrc16(uint8_t *data, uint16_t length);
  7. void ModbusSend(uint8_t *txBuf, uint16_t len);
  8. #endif