Send hard reset over serial #9272
Answered
by
robert-hh
matthgyver
asked this question in
Using MicroPython
-
Hi, Is it possible to send hard reset over serial please ? Thank's |
Beta Was this translation helpful? Give feedback.
Answered by
robert-hh
Sep 11, 2022
Replies: 1 comment 2 replies
-
You can use machine.reset(). Just send |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
matthgyver
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use machine.reset(). Just send
"\rimport machine;machine.reset()\r"
. To interrupt a running code, you may have to send Ctrlc-C beforehand and maybe wait a little bit.