mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-12 07:29:04 +08:00
17 lines
276 B
C
17 lines
276 B
C
|
#pragma once
|
||
|
#include "mongoose.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern struct mg_tcpip_spi spi;
|
||
|
extern struct mg_mgr mgr;
|
||
|
void mqtt_publish(const char *message);
|
||
|
void net_init(void);
|
||
|
void exec_command(const char *req, size_t req_len);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|