px4-firmware/boards/thiemar/s2740vc-v1/default.cmake

51 lines
1.1 KiB
CMake

add_definitions(
-DPARAM_NO_ORB
-DPARAM_NO_AUTOSAVE
)
# UAVCAN boot loadable Module ID
set(uavcanblid_sw_version_major 0)
set(uavcanblid_sw_version_minor 1)
add_definitions(
-DAPP_VERSION_MAJOR=${uavcanblid_sw_version_major}
-DAPP_VERSION_MINOR=${uavcanblid_sw_version_minor}
)
# Bring in common uavcan hardware identity definitions
include(px4_git)
px4_add_git_submodule(TARGET git_uavcan_board_ident PATH "cmake/configs/uavcan_board_ident")
include(configs/uavcan_board_ident/s2740vc-v1)
# N.B. this would be uncommented when there is an APP
#include(px4_make_uavcan_bootloader)
#px4_make_uavcan_bootloadable(BOARD ${PX4_BOARD}
# BIN ${PX4_BINARY_DIR}/platforms/nuttx/s2740vc-v1.bin
# HWNAME ${uavcanblid_name}
# HW_MAJOR ${uavcanblid_hw_version_major}
# HW_MINOR ${uavcanblid_hw_version_minor}
# SW_MAJOR ${uavcanblid_sw_version_major}
# SW_MINOR ${uavcanblid_sw_version_minor})
px4_add_board(
PLATFORM nuttx
VENDOR thiemar
MODEL s2740vc-v1
TOOLCHAIN arm-none-eabi
ARCHITECTURE cortex-m4
DRIVERS
bootloaders
stm32
#uavcannode
MODULES
SYSTEMCMDS
config
reboot
top
ver
)