13 lines
180 B
C++
13 lines
180 B
C++
#ifndef USER_LIB_H
|
|
#define USER_LIB_H
|
|
#include<iostream>
|
|
|
|
class user_lib
|
|
{
|
|
public:
|
|
user_lib();
|
|
|
|
};
|
|
uint16_t CRC16_Modbus(uint8_t *_pBuf, uint16_t _usLen);
|
|
#endif // USER_LIB_H
|