You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
411 B
15 lines
411 B
#pragma once
|
|
#include <stdint.h>
|
|
|
|
/**
|
|
* @brief
|
|
* zble_module_init 方法将此回调注册进去
|
|
*/
|
|
void AppBleService_onServiceInitCB();
|
|
|
|
void AppBleService_init();
|
|
void AppBleService_uninit();
|
|
|
|
void AppBleService_try_report_one_sample_data(uint32_t frameIndex, uint16_t data);
|
|
void AppBleService_try_report_sensor_drop_event(uint8_t dropstate0, uint8_t dropstate1);
|
|
void AppBleService_report_sample_finish_event();
|