1、工程里加入BLE\src\driver\ble_time.c
4、函数:app_sys_time_check_timer_handler里加入:
qn_tm_t *ptm;
qn_time_get(ptm);
printf("%d/%d/%d %d:%d:%d\r\n",ptm->year,ptm->month,ptm->day,ptm->hour,ptm->minutes,ptm->seconds);
其中,define SYS_TIME_CHECK_PERIOD 这个值是10ms的位数,用来刷新检查时间的
2、app_env.h里
#include "bletime.h"
3、函数:app_task_msg_hdl 的 case GAP_SET_MODE_REQ_CMP_EVT:
下面加入:qn_time_init();
4、函数:app_sys_time_check_timer_handler里加入:
qn_tm_t *ptm;
qn_time_get(ptm);
printf("%d/%d/%d %d:%d:%d\r\n",ptm->year,ptm->month,ptm->day,ptm->hour,ptm->minutes,ptm->seconds);
其中,define SYS_TIME_CHECK_PERIOD 这个值是10ms的位数,用来刷新检查时间的