2018-11-23 12:26:41 -04:00
|
|
|
############################################################################
|
|
|
|
#
|
|
|
|
# Copyright (c) 2018 PX4 Development Team. All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name PX4 nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
############################################################################
|
2020-11-09 06:51:27 -04:00
|
|
|
include(px4_list_make_absolute)
|
2018-11-23 12:26:41 -04:00
|
|
|
|
|
|
|
#=============================================================================
|
|
|
|
#
|
|
|
|
# px4_add_module
|
|
|
|
#
|
|
|
|
# This function builds a static library from a module description.
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
# px4_add_module(MODULE <string>
|
|
|
|
# MAIN <string>
|
|
|
|
# [ STACK_MAIN <string> ]
|
|
|
|
# [ STACK_MAX <string> ]
|
|
|
|
# [ COMPILE_FLAGS <list> ]
|
|
|
|
# [ INCLUDES <list> ]
|
|
|
|
# [ DEPENDS <string> ]
|
|
|
|
# [ SRCS <list> ]
|
|
|
|
# [ MODULE_CONFIG <list> ]
|
|
|
|
# [ EXTERNAL ]
|
|
|
|
# [ DYNAMIC ]
|
|
|
|
# )
|
|
|
|
#
|
|
|
|
# Input:
|
|
|
|
# MODULE : unique name of module
|
|
|
|
# MAIN : entry point
|
|
|
|
# STACK : deprecated use stack main instead
|
|
|
|
# STACK_MAIN : size of stack for main function
|
|
|
|
# STACK_MAX : maximum stack size of any frame
|
|
|
|
# COMPILE_FLAGS : compile flags
|
|
|
|
# LINK_FLAGS : link flags
|
|
|
|
# SRCS : source files
|
|
|
|
# MODULE_CONFIG : yaml config file(s)
|
|
|
|
# INCLUDES : include directories
|
|
|
|
# DEPENDS : targets which this module depends on
|
|
|
|
# EXTERNAL : flag to indicate that this module is out-of-tree
|
|
|
|
# DYNAMIC : don't compile into the px4 binary, but build a separate dynamically loadable module (posix)
|
|
|
|
# UNITY_BUILD : merge all source files and build this module as a single compilation unit
|
|
|
|
#
|
|
|
|
# Output:
|
|
|
|
# Static library with name matching MODULE.
|
|
|
|
# (Or a shared library when DYNAMIC is specified.)
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# px4_add_module(MODULE test
|
|
|
|
# SRCS
|
|
|
|
# file.cpp
|
|
|
|
# STACK_MAIN 1024
|
|
|
|
# DEPENDS
|
|
|
|
# git_nuttx
|
|
|
|
# )
|
|
|
|
#
|
|
|
|
function(px4_add_module)
|
|
|
|
|
|
|
|
px4_parse_function_args(
|
|
|
|
NAME px4_add_module
|
2019-08-30 11:09:47 -03:00
|
|
|
ONE_VALUE MODULE MAIN STACK_MAIN STACK_MAX PRIORITY
|
2018-11-23 12:26:41 -04:00
|
|
|
MULTI_VALUE COMPILE_FLAGS LINK_FLAGS SRCS INCLUDES DEPENDS MODULE_CONFIG
|
|
|
|
OPTIONS EXTERNAL DYNAMIC UNITY_BUILD
|
|
|
|
REQUIRED MODULE MAIN
|
|
|
|
ARGN ${ARGN})
|
|
|
|
|
|
|
|
if(UNITY_BUILD AND (${PX4_PLATFORM} STREQUAL "nuttx"))
|
|
|
|
# build standalone test library to catch compilation errors and provide sane output
|
|
|
|
add_library(${MODULE}_original STATIC EXCLUDE_FROM_ALL ${SRCS})
|
|
|
|
if(DEPENDS)
|
|
|
|
add_dependencies(${MODULE}_original ${DEPENDS})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(INCLUDES)
|
|
|
|
target_include_directories(${MODULE}_original PRIVATE ${INCLUDES})
|
|
|
|
endif()
|
|
|
|
target_compile_definitions(${MODULE}_original PRIVATE PX4_MAIN=${MAIN}_app_main)
|
|
|
|
target_compile_definitions(${MODULE}_original PRIVATE MODULE_NAME="${MAIN}_original")
|
|
|
|
|
|
|
|
# unity build
|
|
|
|
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${MODULE}_unity.cpp
|
|
|
|
COMMAND cat ${SRCS} > ${CMAKE_CURRENT_BINARY_DIR}/${MODULE}_unity.cpp
|
2021-11-18 20:34:19 -04:00
|
|
|
DEPENDS ${SRCS}
|
2018-11-23 12:26:41 -04:00
|
|
|
COMMENT "${MODULE} merging source"
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
)
|
|
|
|
set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/${MODULE}_unity.cpp PROPERTIES GENERATED true)
|
|
|
|
|
|
|
|
add_library(${MODULE} STATIC EXCLUDE_FROM_ALL ${CMAKE_CURRENT_BINARY_DIR}/${MODULE}_unity.cpp)
|
|
|
|
target_include_directories(${MODULE} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
2021-11-18 20:34:19 -04:00
|
|
|
add_dependencies(${MODULE} ${MODULE}_original) # build standalone module first to get clean compile errors
|
2018-11-23 12:26:41 -04:00
|
|
|
|
2019-03-16 12:23:17 -03:00
|
|
|
if(COMPILE_FLAGS)
|
|
|
|
target_compile_options(${MODULE}_original PRIVATE ${COMPILE_FLAGS})
|
|
|
|
endif()
|
|
|
|
|
2018-11-23 12:26:41 -04:00
|
|
|
if(DEPENDS)
|
|
|
|
# using target_link_libraries for dependencies provides linking
|
|
|
|
# as well as interface include and libraries
|
|
|
|
foreach(dep ${DEPENDS})
|
|
|
|
get_target_property(dep_type ${dep} TYPE)
|
2021-11-06 00:01:38 -03:00
|
|
|
if((${dep_type} STREQUAL "STATIC_LIBRARY") OR (${dep_type} STREQUAL "INTERFACE_LIBRARY"))
|
2018-11-23 12:26:41 -04:00
|
|
|
target_link_libraries(${MODULE}_original PRIVATE ${dep})
|
|
|
|
else()
|
|
|
|
add_dependencies(${MODULE}_original ${dep})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
|
2020-01-09 12:00:40 -04:00
|
|
|
elseif(DYNAMIC AND MAIN AND (${PX4_PLATFORM} STREQUAL "posix"))
|
2018-11-23 12:26:41 -04:00
|
|
|
add_library(${MODULE} SHARED ${SRCS})
|
|
|
|
target_compile_definitions(${MODULE} PRIVATE ${MAIN}_main=px4_module_main)
|
|
|
|
set_target_properties(${MODULE} PROPERTIES
|
|
|
|
PREFIX ""
|
|
|
|
SUFFIX ".px4mod"
|
|
|
|
)
|
|
|
|
target_link_libraries(${MODULE} PRIVATE px4)
|
|
|
|
if(APPLE)
|
|
|
|
# Postpone resolving symbols until loading time, which is the default on most systems, but not Mac.
|
|
|
|
set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
else()
|
|
|
|
add_library(${MODULE} STATIC EXCLUDE_FROM_ALL ${SRCS})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# all modules can potentially use parameters and uORB
|
|
|
|
add_dependencies(${MODULE} uorb_headers)
|
|
|
|
|
2020-12-30 09:57:55 -04:00
|
|
|
# Check if the modules source dir exists in config_kernel_list
|
|
|
|
# in this case, treat is as a kernel side component for
|
|
|
|
# protected build
|
|
|
|
get_target_property(MODULE_SOURCE_DIR ${MODULE} SOURCE_DIR)
|
|
|
|
file(RELATIVE_PATH module ${PROJECT_SOURCE_DIR}/src ${MODULE_SOURCE_DIR})
|
|
|
|
|
|
|
|
list (FIND config_kernel_list ${module} _index)
|
|
|
|
if (${_index} GREATER -1)
|
|
|
|
set (KERNEL TRUE)
|
|
|
|
endif()
|
|
|
|
|
2018-11-23 12:26:41 -04:00
|
|
|
if(NOT DYNAMIC)
|
2021-11-09 02:54:10 -04:00
|
|
|
target_link_libraries(${MODULE} PRIVATE prebuild_targets px4_platform systemlib perf)
|
2020-12-30 09:57:55 -04:00
|
|
|
if (${PX4_PLATFORM} STREQUAL "nuttx" AND NOT CONFIG_BUILD_FLAT AND KERNEL)
|
events: Move implementation of events::send() to lib/events
Events have a global, system-wide sequence number, which must be handled
atomically, (fetching and incrementing the sequence AND sending the event
to uORB must be atomic). Currently in FLAT mode, only one instance of this
sequence number exists, so it is OK to have it in px4_platform.
However, in PROTECTED mode px4_platform is instantiated both in kernel-
and user spaces, which makes two instances of this sequence number, which
causes problems in the mavlink event handling logic.
When mavlink receives and handles events, it expects that:
- The sequence numbers arrive in order (seq n is followed by n+1 etc)
- It increments by 1
- There is only one instance of the sequence number
In PROTECTED mode this is violated, as the kernel and user sequence
numbers run freely on their own. This patch fixes the issue by moving
the event backend to the kernel and by providing user access to it via
ioctl.
2023-09-21 04:33:05 -03:00
|
|
|
target_link_libraries(${MODULE} PRIVATE
|
|
|
|
kernel_events_interface kernel_parameters_interface px4_kernel_layer uORB_kernel)
|
2020-12-30 09:57:55 -04:00
|
|
|
set_property(GLOBAL APPEND PROPERTY PX4_KERNEL_MODULE_LIBRARIES ${MODULE})
|
|
|
|
else()
|
events: Move implementation of events::send() to lib/events
Events have a global, system-wide sequence number, which must be handled
atomically, (fetching and incrementing the sequence AND sending the event
to uORB must be atomic). Currently in FLAT mode, only one instance of this
sequence number exists, so it is OK to have it in px4_platform.
However, in PROTECTED mode px4_platform is instantiated both in kernel-
and user spaces, which makes two instances of this sequence number, which
causes problems in the mavlink event handling logic.
When mavlink receives and handles events, it expects that:
- The sequence numbers arrive in order (seq n is followed by n+1 etc)
- It increments by 1
- There is only one instance of the sequence number
In PROTECTED mode this is violated, as the kernel and user sequence
numbers run freely on their own. This patch fixes the issue by moving
the event backend to the kernel and by providing user access to it via
ioctl.
2023-09-21 04:33:05 -03:00
|
|
|
target_link_libraries(${MODULE} PRIVATE events_interface parameters_interface px4_layer uORB)
|
2020-12-30 09:57:55 -04:00
|
|
|
set_property(GLOBAL APPEND PROPERTY PX4_MODULE_LIBRARIES ${MODULE})
|
|
|
|
endif()
|
|
|
|
set_property(GLOBAL APPEND PROPERTY PX4_MODULE_PATHS ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
px4_list_make_absolute(ABS_SRCS ${CMAKE_CURRENT_SOURCE_DIR} ${SRCS})
|
|
|
|
set_property(GLOBAL APPEND PROPERTY PX4_SRC_FILES ${ABS_SRCS})
|
2018-11-23 12:26:41 -04:00
|
|
|
endif()
|
|
|
|
|
2021-10-27 13:32:46 -03:00
|
|
|
set_property(GLOBAL APPEND PROPERTY PX4_MODULE_PATHS ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
px4_list_make_absolute(ABS_SRCS ${CMAKE_CURRENT_SOURCE_DIR} ${SRCS})
|
|
|
|
set_property(GLOBAL APPEND PROPERTY PX4_SRC_FILES ${ABS_SRCS})
|
|
|
|
|
2018-11-23 12:26:41 -04:00
|
|
|
# set defaults if not set
|
|
|
|
set(MAIN_DEFAULT MAIN-NOTFOUND)
|
2019-08-30 11:09:47 -03:00
|
|
|
set(STACK_MAIN_DEFAULT 2048)
|
2018-11-23 12:26:41 -04:00
|
|
|
set(PRIORITY_DEFAULT SCHED_PRIORITY_DEFAULT)
|
|
|
|
|
|
|
|
foreach(property MAIN STACK_MAIN PRIORITY)
|
|
|
|
if(NOT ${property})
|
|
|
|
set(${property} ${${property}_DEFAULT})
|
|
|
|
endif()
|
|
|
|
set_target_properties(${MODULE} PROPERTIES ${property} ${${property}})
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# default stack max to stack main
|
|
|
|
if(NOT STACK_MAX)
|
|
|
|
set(STACK_MAX ${STACK_MAIN})
|
|
|
|
endif()
|
|
|
|
set_target_properties(${MODULE} PROPERTIES STACK_MAX ${STACK_MAX})
|
|
|
|
|
2021-07-15 14:17:15 -03:00
|
|
|
if(${PX4_PLATFORM} STREQUAL "nuttx")
|
2022-07-20 05:09:18 -03:00
|
|
|
# double the allocated stacks for 64 bit nuttx targets
|
|
|
|
set(STACK_MAIN "${STACK_MAIN} * (__SIZEOF_POINTER__ >> 2)")
|
|
|
|
|
2018-11-23 12:26:41 -04:00
|
|
|
target_compile_options(${MODULE} PRIVATE -Wframe-larger-than=${STACK_MAX})
|
|
|
|
endif()
|
|
|
|
|
2019-09-15 15:34:22 -03:00
|
|
|
# MAIN
|
2018-11-23 12:26:41 -04:00
|
|
|
if(MAIN)
|
|
|
|
target_compile_definitions(${MODULE} PRIVATE PX4_MAIN=${MAIN}_app_main)
|
|
|
|
target_compile_definitions(${MODULE} PRIVATE MODULE_NAME="${MAIN}")
|
|
|
|
else()
|
2019-09-15 15:34:22 -03:00
|
|
|
message(FATAL_ERROR "MAIN required")
|
2018-11-23 12:26:41 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(COMPILE_FLAGS)
|
|
|
|
target_compile_options(${MODULE} PRIVATE ${COMPILE_FLAGS})
|
|
|
|
endif()
|
|
|
|
|
2020-12-30 09:57:55 -04:00
|
|
|
if (KERNEL)
|
|
|
|
target_compile_options(${MODULE} PRIVATE -D__KERNEL__)
|
|
|
|
endif()
|
|
|
|
|
2018-11-23 12:26:41 -04:00
|
|
|
if(INCLUDES)
|
|
|
|
target_include_directories(${MODULE} PRIVATE ${INCLUDES})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(DEPENDS)
|
|
|
|
# using target_link_libraries for dependencies provides linking
|
|
|
|
# as well as interface include and libraries
|
|
|
|
foreach(dep ${DEPENDS})
|
|
|
|
get_target_property(dep_type ${dep} TYPE)
|
2021-11-06 00:01:38 -03:00
|
|
|
if((${dep_type} STREQUAL "STATIC_LIBRARY") OR (${dep_type} STREQUAL "INTERFACE_LIBRARY"))
|
2018-11-23 12:26:41 -04:00
|
|
|
target_link_libraries(${MODULE} PRIVATE ${dep})
|
|
|
|
else()
|
|
|
|
add_dependencies(${MODULE} ${dep})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
foreach (prop LINK_FLAGS STACK_MAIN MAIN PRIORITY)
|
|
|
|
if (${prop})
|
|
|
|
set_target_properties(${MODULE} PROPERTIES ${prop} ${${prop}})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
if(MODULE_CONFIG)
|
|
|
|
foreach(module_config ${MODULE_CONFIG})
|
|
|
|
set_property(GLOBAL APPEND PROPERTY PX4_MODULE_CONFIG_FILES ${CMAKE_CURRENT_SOURCE_DIR}/${module_config})
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
endfunction()
|