app_client_step.h 455 B

1234567891011121314151617181920
  1. #ifndef __app_client_step_h__
  2. #define __app_client_step_h__
  3. #include <stdbool.h>
  4. #include <stdint.h>
  5. #include <string.h>
  6. #include "sdk_common.h"
  7. #include "SEGGER_RTT.h"
  8. #include "usr_config.h"
  9. #include "hal_ble_client.h"
  10. void app_client_step_Initialize(void);
  11. void app_client_SendStep(BLE_Client_Rx_t* target);
  12. void app_client_DeleteStep(BLE_Client_Rx_t* target);
  13. uint8_t app_client_step_GetIsScan(void);
  14. void app_client_step_SetIsScan(void);
  15. #endif