19 lines
265 B
C
19 lines
265 B
C
#ifndef __RK_BLE_APP_H__
|
|
#define __RK_BLE_APP_H__
|
|
|
|
#include <RkBtBase.h>
|
|
#include <RkBle.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void rk_ble_wifi_init(void *data);
|
|
void rk_ble_wifi_deinit(void *data);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __RK_BLE_APP_H__ */
|