123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #ifndef BSP_BTN_BLE_H__
- #define BSP_BTN_BLE_H__
- #include <stdint.h>
- #include "ble.h"
- #include "bsp.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef void (*bsp_btn_ble_error_handler_t) (uint32_t nrf_error);
- uint32_t bsp_btn_ble_init(bsp_btn_ble_error_handler_t error_handler, bsp_event_t * p_startup_bsp_evt);
- uint32_t bsp_btn_ble_sleep_mode_prepare(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|