機智雲SOC中網路授時用法

顧小北北發表於2020-09-23

網路授時的函式在gizwits_protocol.c檔案中gizwitsGetNTPTime();

我們可以在  gizwits_product.c 中使用這個函式

先定義一個變數

protocolTime_t    n_time;//網路時間快取

獲取時間

n_time=gizwitsGetNTPTime();

列印時間

 GIZWITS_LOG("%d-%d-%d %d:%d:%d\n", n_time.year,n_time.month,n_time.day,n_time.hour,n_time.minute,n_time.second);

 

相關文章