mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-01 02:55:07 +08:00
Fixed unresolved symbols
ecl module was missing for release build qurt_external_hook() was missing. Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
committed by
Julian Oes
parent
9a1daac639
commit
b9fb4c48ad
@@ -77,6 +77,7 @@ set(config_module_list
|
|||||||
lib/mathlib
|
lib/mathlib
|
||||||
lib/mathlib/math/filter
|
lib/mathlib/math/filter
|
||||||
lib/geo
|
lib/geo
|
||||||
|
lib/ecl
|
||||||
lib/geo_lookup
|
lib/geo_lookup
|
||||||
lib/conversion
|
lib/conversion
|
||||||
lib/terrain_estimation
|
lib/terrain_estimation
|
||||||
|
|||||||
@@ -62,6 +62,10 @@ extern const char *get_commands(void);
|
|||||||
void qurt_external_hook(void) __attribute__((weak));
|
void qurt_external_hook(void) __attribute__((weak));
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
|
void qurt_external_hook(void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
static void run_cmd(map<string, px4_main_t> &apps, const vector<string> &appargs)
|
static void run_cmd(map<string, px4_main_t> &apps, const vector<string> &appargs)
|
||||||
{
|
{
|
||||||
// command is appargs[0]
|
// command is appargs[0]
|
||||||
|
|||||||
Reference in New Issue
Block a user