ble_core.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #ifndef __BLE_CORE_H
  2. #define __BLE_CORE_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #ifdef __BLE_CORE_H_GLOBAL
  7. #define __BLE_CORE_H_EXTERN
  8. #else
  9. #define __BLE_CORE_H_EXTERN extern
  10. #endif
  11. /************************************************************************************************
  12. * Version *
  13. ************************************************************************************************/
  14. /************************************************************************************************
  15. * How to use *
  16. ************************************************************************************************/
  17. /************************************************************************************************
  18. * Enable config *
  19. ************************************************************************************************/
  20. /************************************************************************************************
  21. * Includes *
  22. ************************************************************************************************/
  23. #include "uart.h"
  24. /************************************************************************************************
  25. * Defines *
  26. ************************************************************************************************/
  27. // #define BT_BUSY_IND_PORT GPIOB
  28. // #define BT_BUSY_IND_PIN GPIO_Pin_12
  29. // #define BT_CONN_IND_PORT GPIOB
  30. // #define BT_CONN_IND_PIN GPIO_Pin_13
  31. // #define BT_RST_PORT GPIOC
  32. // #define BT_RST_PIN GPIO_Pin_2
  33. // void ble_init(void);
  34. // void ble_send(void);
  35. /************************************************************************************************
  36. * Defines *
  37. ************************************************************************************************/
  38. #ifdef __cplusplus
  39. };
  40. #endif
  41. #endif // __BLE_CORE_H