Adding support for a production mode. #9386
Unanswered
yopknopixx
asked this question in
Using MicroPython
Replies: 1 comment 3 replies
-
Freezing code into the firmware may affect the performance in both ways:
Given the various aspects, code importing is definitely faster. Everything else has to be tested with your code in a real usage scenario. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I recently worked on a project with MicroPython where the performance was critical. I could get it working satisfactorily using various optimizations from https://docs.micropython.org/en/latest/develop/optimizations.html and the native function wrapper.
I wondered if there is a better way to deploy a finished project onto a board, by compiling the project code and only the necessary MicroPython code into a firmware file with obfuscation, etc.
I have a few queries regarding this:
I would be willing to work on this myself with guidance from the community.
Beta Was this translation helpful? Give feedback.
All reactions