Conversation
- Update LVGL dependency from 8.3 to 9.3 for both Linux and STM32 - Migrate display drivers to LVGL 9.3 API (lv_display_t, flush callbacks) - Regenerate FE_Logo with RGB565 format for LVGL 9.3 compatibility - Fix STM32 build: disable ARM Helium/NEON SIMD in lv_conf.h - Fix exception handling for embedded targets (STM32) - Add development tooling and documentation Tested: Both targets build successfully
Dashboard wasn't showing anything: - enabled LTDC callback in cubemx - told platformio not to override the hal_conf with a build config option - enabled st ltdc in lvgl.h - enabled dma in ltdc Still to fix: fonts don't show up correctly
… and must be kept in mind
|
|
||
| /** Color depth: 1 (I1), 8 (L8), 16 (RGB565), 24 (RGB888), 32 (XRGB8888) */ | ||
| #define LV_COLOR_DEPTH 16 | ||
| #define LV_COLOR_DEPTH 32 |
Contributor
There was a problem hiding this comment.
any reason why we're increasing the color depth @noahjaye ?
Contributor
Author
There was a problem hiding this comment.
No, it was not something that I intentionally changed
|
|
||
| /** Color depth: 1 (I1), 8 (L8), 16 (RGB565), 24 (RGB888), 32 (XRGB8888) */ | ||
| #define LV_COLOR_DEPTH 16 | ||
| #define LV_COLOR_DEPTH 32 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixed lvgl V9 by changing font memory allocation
Fixed dashboard unresponsiveness by adding lgvl_tick_inc to SysTick (Note: cubemx deletes this on reconfiguration, something to fix in time)