Files
bizhang_-obav/src/firmware/nuttx/CMakeLists.txt

141 lines
3.3 KiB
CMake
Raw Normal View History

include(common/px4_upload)
if (NOT FW_NAME)
set(FW_NAME ${CONFIG}.elf)
endif()
add_executable(${FW_NAME} ${PX4_SOURCE_DIR}/src/platforms/empty.c)
add_dependencies(${FW_NAME} git_nuttx nuttx_build)
2015-09-19 17:57:54 -04:00
get_property(module_libraries GLOBAL PROPERTY PX4_LIBRARIES)
2015-09-19 17:57:54 -04:00
# build NuttX
add_subdirectory(${PX4_SOURCE_DIR}/platforms/nuttx/NuttX ${PX4_BINARY_DIR}/NuttX)
2016-12-12 13:11:51 -10:00
2017-11-18 11:18:53 -05:00
set(nuttx_libs)
list(APPEND nuttx_libs
nuttx_apps
nuttx_arch
nuttx_binfmt
nuttx_binfmt
nuttx_c
nuttx_configs
nuttx_cxx
nuttx_drivers
nuttx_fs
nuttx_mm
nuttx_sched
2017-11-18 11:18:53 -05:00
)
if (CONFIG_NET)
list(APPEND nuttx_libs nuttx_net)
endif()
2017-11-22 23:56:13 -05:00
if (NOT LD_SCRIPT)
set(LD_SCRIPT ld.script)
endif()
target_link_libraries(${FW_NAME}
2017-11-22 23:56:13 -05:00
-T${PX4_BINARY_DIR}/NuttX/nuttx/configs/${BOARD}/scripts/${LD_SCRIPT}
2017-11-18 11:18:53 -05:00
-Wl,-Map=${PX4_BINARY_DIR}/${CONFIG}.map
-Wl,--warn-common
-Wl,--gc-sections
-Wl,--start-group
${module_libraries}
${nuttx_libs}
-Wl,--end-group
m
gcc
)
if (config_romfs_root)
add_subdirectory(${PX4_SOURCE_DIR}/ROMFS ${PX4_BINARY_DIR}/ROMFS)
target_link_libraries(${FW_NAME} romfs)
if (config_io_board)
add_dependencies(romfs copy_px4io_bin)
endif()
endif()
2016-12-12 13:11:51 -10:00
# create px4 file (combined firmware and metadata)
set(fw_file ${PX4_BINARY_DIR}/${FW_NAME})
string(REPLACE ".elf" ".px4" fw_file ${fw_file})
string(REPLACE "nuttx_" "" fw_file ${fw_file})
2016-12-12 13:11:51 -10:00
add_custom_command(OUTPUT ${BOARD}.bin
COMMAND ${OBJCOPY} -O binary ${PX4_BINARY_DIR}/${FW_NAME} ${BOARD}.bin
DEPENDS ${FW_NAME}
)
2016-12-12 13:11:51 -10:00
if (NOT FW_PROTOTYPE)
set(FW_PROTOTYPE ${BOARD})
endif()
if (TARGET parameters_xml AND TARGET airframes_xml)
add_custom_command(OUTPUT ${fw_file}
COMMAND ${PYTHON_EXECUTABLE} ${PX4_SOURCE_DIR}/Tools/px_mkfw.py
--prototype ${PX4_SOURCE_DIR}/Images/${FW_PROTOTYPE}.prototype
--git_identity ${PX4_SOURCE_DIR}
--parameter_xml ${PX4_BINARY_DIR}/parameters.xml
--airframe_xml ${PX4_BINARY_DIR}/airframes.xml
--image ${BOARD}.bin > ${fw_file}
DEPENDS ${BOARD}.bin parameters_xml airframes_xml
COMMENT "Creating ${fw_file}"
)
2016-12-12 13:11:51 -10:00
add_custom_target(px4 ALL DEPENDS ${fw_file})
2016-12-12 13:11:51 -10:00
# upload helper
if (${BOARD} STREQUAL "aerofc-v1")
px4_add_upload_aero(OUT upload OS ${OS} BOARD ${BOARD} BUNDLE ${fw_file})
else()
px4_add_upload(OUT upload OS ${OS} BOARD ${BOARD} BUNDLE ${fw_file})
endif()
2015-09-12 05:26:31 -04:00
endif()
# print size
add_custom_target(size
COMMAND size ${FW_NAME}
DEPENDS ${FW_NAME}
WORKING_DIRECTORY ${PX4_BINARY_DIR}
)
2015-09-08 15:18:59 -04:00
# print weak symbols
add_custom_target(check_weak
COMMAND ${NM} ${FW_NAME} | ${GREP} " w " | cat
DEPENDS ${FW_NAME}
2015-09-12 05:26:31 -04:00
VERBATIM
)
# debugger helpers
configure_file(gdbinit.in .gdbinit)
2016-07-12 14:47:55 -10:00
add_custom_target(debug
COMMAND ${GDB} $<TARGET_FILE:${FW_NAME}>
DEPENDS ${FW_NAME} ${CMAKE_CURRENT_BINARY_DIR}/.gdbinit
)
2015-10-06 12:10:23 -04:00
add_custom_target(debug_tui
COMMAND ${GDBTUI} $<TARGET_FILE:${FW_NAME}>
DEPENDS ${FW_NAME} ${CMAKE_CURRENT_BINARY_DIR}/.gdbinit
)
add_custom_target(debug_ddd
COMMAND ${DDD} --debugger ${GDB} $<TARGET_FILE:${FW_NAME}>
DEPENDS ${FW_NAME} ${CMAKE_CURRENT_BINARY_DIR}/.gdbinit
)
2015-10-06 12:10:23 -04:00
add_custom_target(debug_io
COMMAND ${GDB} ${fw_io_path}
DEPENDS ${FW_NAME} ${CMAKE_CURRENT_BINARY_DIR}/.gdbinit
)
2015-09-11 06:38:39 -04:00
add_custom_target(debug_io_tui
COMMAND ${GDBTUI} ${fw_io_path}
DEPENDS ${FW_NAME} ${CMAKE_CURRENT_BINARY_DIR}/.gdbinit
)
2015-09-08 15:18:59 -04:00
add_custom_target(debug_io_ddd
COMMAND ${DDD} --debugger ${GDB} ${fw_io_path}}
DEPENDS ${fw_io} ${CMAKE_CURRENT_BINARY_DIR}/.gdbinit
)