16 lines
234 B
C
16 lines
234 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// 初始化 BLE 图传服务
|
|
void dzbj_ble_init(void);
|
|
|
|
// 反初始化 BLE 图传服务(释放蓝牙协议栈资源)
|
|
void dzbj_ble_deinit(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|