21 lines
248 B
C
21 lines
248 B
C
#ifndef BLE_SERVER_H
|
|
#define BLE_SERVER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void start_server(void);
|
|
|
|
void stop_server(void);
|
|
|
|
void send_message(const char* message);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // BLE_SERVER_H
|