123456789101112131415161718192021222324252627 |
- #ifndef APP_PAIR_CHARGERPIN__
- #define APP_PAIR_CHARGERPIN__
- // <q> BLE_PRINTF - µ÷ÊÔÐÅÏ¢
- #ifndef PAIR_CHARGERPIN_PRINTF
- #define PAIR_CHARGERPIN_PRINTF 0
- #endif
- #if PAIR_CHARGERPIN_PRINTF
- #define PAIR_CHARGERPIN_PRINT(...) SEGGER_RTT_printf(0, __VA_ARGS__)
- #else
- #define PAIR_CHARGERPIN_PRINT(...) ;
- #endif
- // <q> PAIR_INFO_EN - µ÷ÊÔÐÅÏ¢
- #ifndef PAIR_CHARGERPIN_INFO_EN
- #define PAIR_CHARGERPIN_INFO_EN 1
- #endif
- #if PAIR_CHARGERPIN_INFO_EN
- #define PAIR_CHARGERPIN_INFO(...) SEGGER_RTT_printf(0, __VA_ARGS__)
- #else
- #define PAIR_CHARGERPIN_INFO(...) ;
- #endif
- void app_pair_chargerpin_Init(void);
- #endif
|