app_pair_chargerpin.h 606 B

123456789101112131415161718192021222324252627
  1. #ifndef APP_PAIR_CHARGERPIN__
  2. #define APP_PAIR_CHARGERPIN__
  3. // <q> BLE_PRINTF - µ÷ÊÔÐÅÏ¢
  4. #ifndef PAIR_CHARGERPIN_PRINTF
  5. #define PAIR_CHARGERPIN_PRINTF 0
  6. #endif
  7. #if PAIR_CHARGERPIN_PRINTF
  8. #define PAIR_CHARGERPIN_PRINT(...) SEGGER_RTT_printf(0, __VA_ARGS__)
  9. #else
  10. #define PAIR_CHARGERPIN_PRINT(...) ;
  11. #endif
  12. // <q> PAIR_INFO_EN - µ÷ÊÔÐÅÏ¢
  13. #ifndef PAIR_CHARGERPIN_INFO_EN
  14. #define PAIR_CHARGERPIN_INFO_EN 1
  15. #endif
  16. #if PAIR_CHARGERPIN_INFO_EN
  17. #define PAIR_CHARGERPIN_INFO(...) SEGGER_RTT_printf(0, __VA_ARGS__)
  18. #else
  19. #define PAIR_CHARGERPIN_INFO(...) ;
  20. #endif
  21. void app_pair_chargerpin_Init(void);
  22. #endif