mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
17 lines
412 B
C
17 lines
412 B
C
/* declarations of builtin command list - automatically generated, do not edit */
|
|
|
|
#pragma once
|
|
|
|
#include "px4_tasks.h" // px4_main_t
|
|
#include <map>
|
|
#include <string>
|
|
|
|
// Maps an app name to it's function.
|
|
typedef std::map<std::string, px4_main_t> apps_map_type;
|
|
|
|
// Initialize an apps map.
|
|
__EXPORT void init_app_map(apps_map_type &apps);
|
|
|
|
// List an apps map.
|
|
__EXPORT void list_builtins(apps_map_type &apps);
|