mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
The bulk of this change was tightly coupled and needed to be deleted in one pass. Some of the smaller changes were things that broke as a result of the initial purge and subsequently fixed by further eradicating unnecessary platform differences. Finally, I deleted any dead code I came across in the related files I touched while going through everything.
- DriverFramework (src/lib/DriverFramework submodule) completely removed
- added dspal submodule in qurt platform (was brought in via DriverFramework)
- all df wrapper drivers removed
- all boards using df wrapper drivers updated to use in tree equivalents
- unused empty arch/board.h on posix and qurt removed
- unused IOCTLs removed (pub block, priv, etc)
- Integrator delete methods only used from df wrapper drivers
- commander: sensor calibration use "NuttX version" everywhere for now
- sensors: update to px4_{open, read, close} instead of DevMgr wrapper (adc open for analog differential pressure)
- battery_status: update to px4_{open, read, close} instead of DevMgr wrapper (adc open for analog differential pressure)
- cdev cleanup conflicting typedefs and names with actual OS (pollevent_t, etc)
- load_mon and top remove from linux boards (unused)
- delete unused PX4_MAIN_FUNCTION
- delete unused getreg32 macro
- delete unused SIOCDEVPRIVATE define
- named each platform tasks consistently
- posix list_devices and list_topics removed (list_files now shows all virtual files)
59 lines
1.4 KiB
CMake
59 lines
1.4 KiB
CMake
|
|
px4_add_git_submodule(TARGET git_dspal PATH "${PX4_SOURCE_DIR}/platforms/qurt/dspal")
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${PX4_SOURCE_DIR}/platforms/qurt/dspal/cmake_hexagon")
|
|
include(toolchain/Toolchain-qurt)
|
|
include(fastrpc)
|
|
include(qurt_lib)
|
|
include(qurt_flags)
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
get_property(module_libraries GLOBAL PROPERTY PX4_MODULE_LIBRARIES)
|
|
|
|
px4_qurt_generate_builtin_commands(
|
|
OUT ${PX4_BINARY_DIR}/apps
|
|
MODULE_LIST ${module_libraries}
|
|
)
|
|
|
|
FASTRPC_STUB_GEN(px4muorb.idl)
|
|
|
|
add_definitions(-D__QAIC_SKEL_EXPORT=__EXPORT)
|
|
|
|
# Enable build without HexagonSDK to check link dependencies
|
|
if ("${QURT_ENABLE_STUBS}" STREQUAL "1")
|
|
|
|
add_definitions(-D QURT_EXE_BUILD=1)
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${FASTRPC_DSP_INCLUDES}
|
|
)
|
|
|
|
add_executable(px4
|
|
${PX4_BINARY_DIR}/apps.cpp
|
|
${PX4_BINARY_DIR}/platforms/qurt/px4muorb_skel.c
|
|
)
|
|
|
|
target_link_libraries(px4 PRIVATE ${module_libraries})
|
|
|
|
else()
|
|
# Generate the DSP lib and stubs but not the apps side executable
|
|
# The Apps side executable is generated via the posix_eagle_xxxx target
|
|
QURT_LIB(LIB_NAME px4
|
|
IDL_NAME px4muorb
|
|
SOURCES
|
|
${PX4_BINARY_DIR}/apps.cpp
|
|
LINK_LIBS
|
|
modules__muorb__adsp
|
|
${module_libraries}
|
|
m
|
|
)
|
|
|
|
endif()
|
|
|
|
# board defined upload helper
|
|
if(EXISTS "${PX4_BOARD_DIR}/cmake/upload.cmake")
|
|
include(${PX4_BOARD_DIR}/cmake/upload.cmake)
|
|
endif()
|