missing framebuf module on nucleo board #18482
Replies: 3 comments 10 replies
-
|
Have you tried https://docs.micropython.org/en/latest/reference/packages.html |
Beta Was this translation helpful? Give feedback.
-
|
The default most likely to preserve memory space. To get the |
Beta Was this translation helpful? Give feedback.
-
|
There are at least three levels of configuration files: py/mpconfig.h which includes port//mpconfigport.h The default's are set in mpconfig.h and are controlled by the MICROPY_CONFIG_ROM_LEVEL, which is usually set in mpconfigport.h with a default value set in mpconfig.h. The levels are: The default for STM32 is MICROPY_CONFIG_ROM_LEVEL_EXTRA_FEATURES, unless it is set differently for a board. MICROPY_CONFIG_ROM_LEVEL_EXTRA_FEATURES enables framebuf. All of that does not explain why framebuf is disabled for the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to port a library for an ILI9341 display, but the library uses the
framebufmodule, and I don't see any way to install that. This is what I currently see installed on the board.Beta Was this translation helpful? Give feedback.
All reactions