用于跟踪日期的 AVR 库/片段

发布于 2024-12-15 18:16:52 字数 115 浏览 1 评论 0原文

有谁知道可用于在嵌入式环境(AVR MCU)中存储/跟踪时间和日期的库或良好的代码片段。我希望能够设置日期和时间,然后使用我的一个计时器的 1hz 脉冲进行更新。我可以自己编写这段代码,但我觉得可能已经有一些东西了。

Does anyone know of a library or good code snippit that can be used to store/keep track of time and date within an embedded environment (AVR MCU). I would like to be able to set a date and time and then update it using a 1hz pulse from one of my timers. I could write this code myself however I feel like there may already be something out there.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

叹沉浮 2024-12-22 18:16:52

通常您会使用 RTC 来实现此目的,因为 AVR 的 1Hz 脉冲并不那么精确。执行此操作的正常方法是制作当前时间的时间戳并每秒增加它。您可以使用 mktime 方法来创建时间戳,尽管我不确定 AVR libc 是否支持它。 http://www.manpagez.com/man/3/mktime/ 当您想要将其转换回“正常”时间,您可以使用 ctime 作为可打印版本,或使用 gmtime 作为 struct tm 版本。

Normally you would use a RTC for this because the 1Hz pulse of the AVR is not that precise. A normal way to do this is to make a time stamp of the current time and increase it every second. You can make a timestamp by using the method mktime although I'm not sure it's supported supported in the AVR libc. http://www.manpagez.com/man/3/mktime/ When you want to convert it back to 'normal' time you could use ctime for the printable version or gmtime for the struct tm version.

云雾 2024-12-22 18:16:52

Arduino 时间库。但我从未使用过它。

There is the Arduino Time library. I never used it though.

撩人痒 2024-12-22 18:16:52

我最终做的是采用苹果使用的 time.h 库,并根据我的项目稍微调整它,因为它是在 BSD 许可证下的。可以在此处找到

What I ended up doing was taking the time.h library that was used by apple and adapting it slightly for my project as it was under the BSD licence. It can be found Here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文