基于 wifi_http 的 例程,
修改 main.c 中的 include
#include "FreeRTOS.h"
#include "task.h"
#include "timers.h"
#include <lwip/tcpip.h>
#include <lwip/sockets.h>
#include <lwip/netdb.h>
// 增加这个头文件
#include <lwip/apps/sntp.h>
在main 函数增加 代码:
int main(void)
{
board_init();
uart0 = bflb_device_get_by_name("uart0");
shell_init_with_task(uart0);
tcpip_init(NULL, NULL);
// 设置单播模式
sntp_setoperatingmode(SNTP_OPMODE_POLL);
// 设置访问服务器
sntp_setservername(0, "cn.pool.ntp.org"); // 中国区NTP服务的虚拟集群
sntp_setservername(1, "210.72.145.44"); // 国家授时中心服务器 IP 地址
sntp_setservername(2, "ntp1.aliyun.com");
sntp_setservername(3, "1.cn.pool.ntp.org");
sntp_set_time_sync_notification_cb(time_sync_notification_cb);
// 初始化SNTP模块
sntp_init();
编译出错提示,找不到 sntp 的函数
/main.c:121: undefined reference to sntp_setoperatingmode'
/main.c:142: undefined reference to
sntp_setservername'
/main.c:184: undefined reference to `sntp_init'
请问此问题要如何解决呢? 需要修改 config 文件吗?