- Added initial version of Hierarchical Menu

- Beautified the Message Box a bit
This commit is contained in:
2025-09-19 15:21:15 +02:00
parent 097a50f073
commit c8f14373d3
36 changed files with 2998 additions and 1973 deletions

View File

@@ -82,6 +82,8 @@ add_executable(Firmware
Display_Default_Configurations.c
Display_Message_Box_Icons.c
Display_Render_Complex.c
Display_Render_Simple.c
Display_Color.c
Display_Font.c
Display_Image.c
@@ -93,6 +95,7 @@ add_executable(Firmware
Display.c
Screen_Variables.c
Hierarchical_Menu.c
${IMAGE_SOURCES}
${FONT_SOURCES}
@@ -134,3 +137,7 @@ target_link_libraries(Firmware
pico_add_extra_outputs(Firmware)
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD
COMMAND ${CMAKE_OBJDUMP} -t $<TARGET_FILE:${PROJECT_NAME}> > ${CMAKE_CURRENT_BINARY_DIR}/symbols_full.txt
COMMENT "Extracting all symbols to symbols_full.txt"
)