25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

13 satır
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