20 lines
619 B
C
20 lines
619 B
C
#include "ble_port_hfp_service.h"
|
|
#include "TjdPhoneService.h"
|
|
#include "bts_hfp_hf.h"
|
|
#include "sys_config.h"
|
|
|
|
#define ENABLE_PRINT_INFO 1
|
|
#if ENABLE_PRINT_INFO
|
|
#define static_print_debug(...) sys_bt_log_d(__VA_ARGS__) // 一般信息打印宏控制
|
|
#define static_print_warn(...) sys_bt_log_w(__VA_ARGS__) // 警告信息打印一般常开
|
|
#define static_print_error(...) sys_bt_log_e(__VA_ARGS__) // 错误信息打印一般常开
|
|
#else
|
|
#define static_print_debug(...)
|
|
#define static_print_warn(...)
|
|
#define static_print_error(...)
|
|
#endif
|
|
|
|
void register_hfp_hf_servers_callbacks(void)
|
|
{
|
|
TjdPhoneServiceInit();
|
|
} |