SSD1302 #2049
-
I am working on a project with an [SSD1306] and we are happy to use your library.But unfortunatly we are working on an arduino nano so there are some problem |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It is possible, but there would be no reduction in memory usage. U8g2 makes heavy use of LTO (link time optimization) and all code which is not needed for your display is automatically removed. If you run out of memory, you either need a bigger uC or you need to optimize your code. For example you should use the page mode in cases where you use the full buffer mode. |
Beta Was this translation helpful? Give feedback.
It is possible, but there would be no reduction in memory usage. U8g2 makes heavy use of LTO (link time optimization) and all code which is not needed for your display is automatically removed. If you run out of memory, you either need a bigger uC or you need to optimize your code. For example you should use the page mode in cases where you use the full buffer mode.