28 lines
484 B
C
28 lines
484 B
C
#ifndef _ETH_BOARD_H
|
|
#define _ETH_BOARD_H µçѹ
|
|
|
|
void EthMqttTick(void);
|
|
void EthMqttTask(void);
|
|
void EthMqttInit(void);
|
|
|
|
|
|
int EthMqttReadData(char * buf,int length);
|
|
|
|
int EthMqttIsReady(void);
|
|
|
|
|
|
void EthMqttWriteData(char * data,int length);
|
|
|
|
|
|
int EthMqttIsIdle(void);
|
|
|
|
|
|
int EthMqttIsConnect(void);
|
|
|
|
int EthMqttReSubTopic(char * topic);
|
|
|
|
|
|
#endif
|
|
|
|
|