123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #ifndef ANT_SDM_LOCAL_H__
- #define ANT_SDM_LOCAL_H__
- #include <stdint.h>
- #include <stdbool.h>
- #include "ant_sdm.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef struct
- {
- ant_request_controller_t req_controller;
- }ant_sdm_disp_cb_t;
- typedef struct
- {
- uint8_t supp_page_control;
- ant_sdm_page_t supp_page_number;
- ant_sdm_page_t common_page_number;
- uint8_t message_counter;
- ant_request_controller_t req_controller;
- }ant_sdm_sens_cb_t;
- #ifdef __cplusplus
- }
- #endif
- #endif
|