Hello, all amazing people! I have a question about what kind of crate I should use in a no_std
environment to get a real-time UTC clock. I have searched a lot for a suitable crate for my project, which is in a no_std
environment, and I keep finding chrono
and time
. What other options are available?
Did you see that both of those creates support no_std by removing the std feature (turn off default features and add only those you need)?
Edit: Oh, you're looking for a real-time clock. Take a look at https://lib.rs/search?q=RTC
1 Like
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.