sdcard picomite: sync with upstream

This commit is contained in:
Yatao Li
2025-06-15 21:31:45 +08:00
parent f305e6def6
commit eb3b15e188
37 changed files with 3695 additions and 449 deletions

View File

@@ -76,15 +76,15 @@ add_dependencies(PREPARE_sd_boot BUILT_boot)
add_dependencies(sd_boot PREPARE_sd_boot)
add_dependencies(BUILT_sd_boot sd_boot)
add_dependencies(PREPARE_picomite BUILT_sd_boot)
add_dependencies(picomite PREPARE_picomite)
add_dependencies(BUILT_picomite picomite)
add_dependencies(PREPARE_PicoMite BUILT_sd_boot)
add_dependencies(PicoMite PREPARE_PicoMite)
add_dependencies(BUILT_PicoMite PicoMite)
# ***************************************************************************
# * Join the BOOT and all APP '.uf2' files together *
# ***************************************************************************
set(UF2S boot.uf2 sd_boot.uf2 picomite.uf2)
set(UF2S boot.uf2 sd_boot.uf2 PicoMite.uf2)
add_custom_target(JOIN
COMMENT "Combine the '.uf2' files"
@@ -95,7 +95,7 @@ add_custom_target(JOIN
${UF2S}
)
add_dependencies(JOIN BUILT_picomite)
add_dependencies(JOIN BUILT_PicoMite)
add_custom_target(${PROJECT} ALL DEPENDS JOIN)