Add CMake presets.

Signed-off-by: HiFiPhile <admin@hifiphile.com>
This commit is contained in:
HiFiPhile
2025-02-09 00:04:16 +01:00
parent eca025f714
commit 09bce3532c
56 changed files with 4417 additions and 2 deletions

4002
hw/bsp/BoardPresets.json Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -399,7 +399,11 @@ endfunction()
# Add flash jlink target
function(family_flash_jlink TARGET)
if (NOT DEFINED JLINKEXE)
set(JLINKEXE JLinkExe)
if(CMAKE_HOST_WIN32)
set(JLINKEXE JLink.exe)
else()
set(JLINKEXE JLinkExe)
endif()
endif ()
if (NOT DEFINED JLINK_IF)