-
Hi! Comparing https://docs.espressif.com/projects/rust/esp-hal/1.0.0-beta.0/esp32/esp_hal/rtc_cntl/struct.Rtc.html with I've noticed
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I don't recall this being implemented, but I might be wrong . If you could verify, and if there is a regression file an issue and or debug it a little bit that would be most helpful!
Whilst convenient, it did somewhat lock users into chrono (yes, they could use their own but they have to go from chrono -> their impl, and they can't cut out the middle man). The new approach leaves the time impl to the user. Finally, we're trying to avoid <1.0 dependencies, and chrono doesn't look like it will be stable anytime soon. In removing chrono, we added a doc comment on how to use it with |
Beta Was this translation helpful? Give feedback.
I don't recall this being implemented, but I might be wrong . If you could verify, and if there is a regression file an issue and or debug it a little bit that would be most helpful!
Whilst convenient, it did somewhat lock users into chrono (yes, they could use their own but they have to go from chrono -> their impl, and they can't cut out the middle man). The new approach leaves t…