Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
NTP_网络校时
ntp_sync时间同步问题
发布于 2021-05-28 16:54:00 浏览:1613
订阅该版
[tocm] # RT-Thread ntp_sync时钟同步问题 ## 硬件 > RT-THREAD ART-PI开发板,使用4G模块EC200进行时钟同步。 ## 现象 ``` msh />ntp_sync [I/ntp] Get local time from NTP server: Fri May 28 23:02:58 2021 [I/ntp] 1622214178 [I/ntp] year:2000, month:3, day:4 [I/ntp] hour:23, min:2, sec:58 [I/ntp] Get local time from NTP server: Fri May 28 23:02:58 2021 ``` 使用`ntp_sync`进行网络时钟同步。年月日时间没有同步,时分秒时间同步了。 ## 解决 修改`packages\netutils\ntp\ntp.c`文件中代码。 ```c struct tm *cur_tm; cur_tm = localtime(&cur_time); set_time(cur_tm->tm_hour, cur_tm->tm_min, cur_tm->tm_sec); set_date(cur_tm->tm_year + 1900, cur_tm->tm_mon + 1, cur_tm->tm_mday); ``` 更改为 ```c struct tm *cur_tm; struct tm cur_tm_t; cur_tm = &cur_tm_t; localtime_r(&cur_time, cur_tm); set_time(cur_tm->tm_hour, cur_tm->tm_min, cur_tm->tm_sec); set_date(cur_tm->tm_year + 1900, cur_tm->tm_mon + 1, cur_tm->tm_mday); ``` 或者使用设备操作替换 ```c rt_device_control(rt_device_find("rtc"), RT_DEVICE_CTRL_RTC_SET_TIME, &cur_time); ``` ## 问题分析 函数`localtime`调用流程。 ``` graph LR A[localtime] --> B[localtime_r] B --> C[gmtime_r] ``` 其中它返回的地址是`localtime`函数中声明的静态变量`static struct tm tmp`。 其中`cur_tm`指针指向`struct tm tmp`的地址。而后面的函数`set_time(cur_tm->tm_hour, cur_tm->tm_min, cur_tm->tm_sec);`会调用`localtime`函数,同时更改静态变量的值,同步更新`cur_tm->tm_year`等值。造成set_date函数中参数变化,影响年月日的设置。 使用`localtime_r`函数,将值保存在声明的局部变量,可修复bug。 `set_time`中包含`localtime()`,影响`cur_tm`指针指向的变量。 ```c rt_err_t set_time(rt_uint32_t hour, rt_uint32_t minute, rt_uint32_t second) { time_t now; struct tm *p_tm; struct tm tm_new; rt_device_t device; rt_err_t ret = -RT_ERROR; /* get current time */ now = time(RT_NULL); /* lock scheduler. */ rt_enter_critical(); /* converts calendar time into local time. */ p_tm = localtime(&now); /* copy the statically located variable */ rt_memcpy(&tm_new, p_tm, sizeof(struct tm)); /* unlock scheduler. */ rt_exit_critical(); /* update time. */ tm_new.tm_hour = hour; tm_new.tm_min = minute; tm_new.tm_sec = second; /* converts the local time into the calendar time. */ now = mktime(&tm_new); device = rt_device_find("rtc"); if (device == RT_NULL) { return -RT_ERROR; } /* update to RTC device. */ ret = rt_device_control(device, RT_DEVICE_CTRL_RTC_SET_TIME, &now); return ret; } ```
2
条评论
默认排序
按发布时间排序
登录
注册新账号
关于作者
HVOK_6419
这家伙很懒,什么也没写!
文章
1
回答
2
被采纳
0
关注TA
发私信
相关文章
1
studio编译无法添加某些component组件
2
log RTC hasn't been configured 啥异常?
3
NTP的使用,编译出现error
4
ntp服务器无法同步问题
5
在at-device获取授时过程中NTP堆栈溢出
6
NTP和LWIP之间冲突
7
ntp对时localtime函数输出的不对
8
K210平台,开启NTP功能后。stack overflow
9
ntp 与 air 720的包一起使用连接超时?
10
1.3.0往后版本的 netutils 的 NTP 时间同步工具没用
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
UART
WIZnet_W5500
ota在线升级
freemodbus
PWM
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
flashDB
GD32
socket
中断
编译报错
Debug
SFUD
rt_mq_消息队列_msg_queue
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
a1012112796
10
个答案
1
次被采纳
踩姑娘的小蘑菇
4
个答案
1
次被采纳
红枫
4
个答案
1
次被采纳
张世争
4
个答案
1
次被采纳
Ryan_CW
4
个答案
1
次被采纳
本月文章贡献
catcatbing
3
篇文章
5
次点赞
YZRD
2
篇文章
3
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
Woshizhapuren
1
篇文章
5
次点赞
回到
顶部
发布
问题
投诉
建议
回到
底部