Make it possible to define LVGL config in a higher level format #11
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: rafaelcaricio/lvgl-rs#11
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Would be nice to define library properties in a high level format than
lv_conf.h
file. Possibly, alv_conf.toml
would be a better approach. We could do validations and consistency checks at build time (build.rs
) and generate the finallv_conf.h
dynamically right before compilation.An example content of how the
lv_conf.toml
could look like:Users would be required to define only what differs from the default values. That way, it is easier to spot differences or custom configurations.