Switch to cmake build system
* use tinyprintf * ability to configure project via ccmake Signed-off-by: Amir Hammad <amir.hammad@hotmail.com>
This commit is contained in:
parent
28ccd32608
commit
ed70a1efa3
19 changed files with 1001 additions and 370 deletions
18
cmake/openocd_flash.cmake
Normal file
18
cmake/openocd_flash.cmake
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
find_program (OOCD openocd DOC "openocd executable")
|
||||
|
||||
set (OOCD_INTERFACE stlink-v2 CACHE STRING "interface config file used for openocd flashing")
|
||||
set (OOCD_BOARD stm32f4discovery CACHE STRING "board config file used for openocd flashing")
|
||||
if (OOCD)
|
||||
message (STATUS "OpenOCD found: ${OOCD}")
|
||||
message (STATUS "... interface: ${OOCD_INTERFACE}")
|
||||
message (STATUS "... board: ${OOCD_BOARD}")
|
||||
add_custom_target (flash
|
||||
COMMAND sh -c '${OOCD} -f interface/${OOCD_INTERFACE}.cfg
|
||||
-f board/${OOCD_BOARD}.cfg
|
||||
-c "init" -c "reset init"
|
||||
-c "flash write_image erase $<TARGET_FILE:demo>"
|
||||
-c "reset"
|
||||
-c "shutdown" '
|
||||
DEPENDS demo
|
||||
)
|
||||
endif (OOCD)
|
||||
Loading…
Add table
Add a link
Reference in a new issue