12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #ifndef BSP_BTN_ANT_H__
- #define BSP_BTN_ANT_H__
- #include <stdint.h>
- #include "sdk_errors.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- ret_code_t bsp_btn_ant_init(uint8_t channel, uint8_t channel_type);
- ret_code_t bsp_btn_ant_sleep_mode_prepare(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|