Open
Conversation
9d4b5da to
bbd9a83
Compare
BlakeFreer
requested changes
Oct 15, 2025
Contributor
BlakeFreer
left a comment
There was a problem hiding this comment.
pretty cool! there's a few things to fix up and I had some questions. also it doesn't build on linux for me
Contributor
There was a problem hiding this comment.
For both linux/lv_conf and stm32/lv_conf, you should start with the lv_conf_template from the LVGL 9.3.0 release https://github.com/lvgl/lvgl/blob/release/v9.3/lv_conf_template.h instead of just updating the old conf file.
The new version may add feature flags / remove old ones, so it is better to use their template
BlakeFreer
reviewed
Oct 15, 2025
- 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
bbd9a83 to
a13ed05
Compare
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
cad98b4 to
40075e7
Compare
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.
Upgraded LVGL from 8.3 to 9.3
Updated platformio.ini to use lvgl@9.3
Migrated all API changes throughout the codebase
Fixed LVGL 9.3 API Compatibility
Changed lv_img_create → lv_image_create
Changed lv_img_set_src → lv_image_set_src
Changed lv_obj_del → lv_obj_delete
Updated lv_disp_* → lv_display_* functions
Updated image descriptor format from lv_img_dsc_t to lv_image_dsc_t
Removed internal LVGL header includes, replaced with generic lvgl.h
Fixed Logo Screen Issue
Original RGB565A8 format incompatible with LVGL 9.3
Fixed Window Close Handling
Created Setup and Run Scripts
setup.sh - One-time setup for all dependencies
run_simulator.sh - Start FrontController in separate terminal
run_dashboard.sh - Start dashboard in separate terminal
run.sh - All-in-one script (optional)
Made all scripts executable with proper error handling
Rewrote README.md
Added beginner-friendly "Complete Beginner" section at top
Created visual two-terminal diagram
Added exclude_helium.py script to disable ARM SIMD optimizations for Linux builds
This pre-build script prevents compilation errors when building LVGL 9.3 on x86/Linux platforms.