9 lines
119 B
C
9 lines
119 B
C
|
|
#ifndef _UTILS_H_
|
||
|
|
#define _UTILS_H_
|
||
|
|
|
||
|
|
#include "stdint.h"
|
||
|
|
|
||
|
|
extern uint16_t modbus_crc16(uint8_t *buf, int len);
|
||
|
|
|
||
|
|
#endif
|