docs: machine.RTC
#13049
-
Please tell me if there is a difference in using Timer and irq in machine.RTC which is currently missing in esp32. |
Beta Was this translation helpful? Give feedback.
Answered by
karfas
Nov 22, 2023
Replies: 1 comment 6 replies
-
I have moved this to Please explain in more detail what you are trying to do. The |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nothing in micropython will magically run faster or in the background. A function scheduled using
micropython.schedule()
will block execution of everything else.To achieve background processing you will need to use an extra thread or asyncio.