mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-03 01:00:35 +08:00
qurt: Added patch for Eigen to use latest version
Updated to 7.2 Hexagon toolchain Fixed issuse with stack usage Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
@@ -30,13 +30,16 @@
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
############################################################################
|
||||
|
||||
set(MODULE_CFLAGS -Weffc++)
|
||||
if(NOT ${OS} STREQUAL "qurt")
|
||||
list(APPEND MODULE_CFLAGS -Wframe-larger-than=3400)
|
||||
endif()
|
||||
|
||||
px4_add_module(
|
||||
MODULE modules__ekf_att_pos_estimator
|
||||
MAIN ekf_att_pos_estimator
|
||||
COMPILE_FLAGS
|
||||
-Weffc++
|
||||
-Wframe-larger-than=3400
|
||||
-O3
|
||||
COMPILE_FLAGS ${MODULE_CFLAGS}
|
||||
SRCS
|
||||
ekf_att_pos_estimator_main.cpp
|
||||
ekf_att_pos_estimator_params.c
|
||||
|
||||
@@ -30,12 +30,15 @@
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
############################################################################
|
||||
set(MODULE_CFLAGS)
|
||||
if(NOT ${OS} STREQUAL "qurt")
|
||||
list(APPEND MODULE_CFLAGS -Wframe-larger-than=3800)
|
||||
endif()
|
||||
px4_add_module(
|
||||
MODULE modules__position_estimator_inav
|
||||
MAIN position_estimator_inav
|
||||
STACK 1200
|
||||
COMPILE_FLAGS
|
||||
-Wframe-larger-than=3800
|
||||
COMPILE_FLAGS ${MODULE_CFLAGS}
|
||||
|
||||
SRCS
|
||||
position_estimator_inav_main.c
|
||||
|
||||
Reference in New Issue
Block a user