Debugging a frozen module #13158
Answered
by
andrewleech
davefes
asked this question in
Using MicroPython
-
I found this clue:
What if you want to work on one out of several frozen modules and you don’t have enough flash to “unfreeze” all of them? The problem I am having is trying to debug Is there some way to have a file on |
Beta Was this translation helpful? Give feedback.
Answered by
andrewleech
Dec 9, 2023
Replies: 1 comment 1 reply
-
If you change sys.path to have flash before frozen you can replace one module, eg |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
davefes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you change sys.path to have flash before frozen you can replace one module, eg
sys.path.insert(0, '/flash')