2016-10-21 10:54:48 -03:00
|
|
|
/* declarations of builtin command list - automatically generated, do not edit */
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-10-25 05:56:32 -03:00
|
|
|
#include <px4_platform_common/tasks.h> // px4_main_t
|
2016-10-21 10:54:48 -03:00
|
|
|
#include <map>
|
2019-08-09 10:10:09 -03:00
|
|
|
#include <string>
|
2016-10-21 10:54:48 -03:00
|
|
|
|
|
|
|
// Maps an app name to it's function.
|
|
|
|
typedef std::map<std::string, px4_main_t> apps_map_type;
|
|
|
|
|
|
|
|
// Initialize an apps map.
|
2016-10-27 14:20:07 -03:00
|
|
|
__EXPORT void init_app_map(apps_map_type &apps);
|
2016-10-21 10:54:48 -03:00
|
|
|
|
|
|
|
// List an apps map.
|
2016-10-27 14:20:07 -03:00
|
|
|
__EXPORT void list_builtins(apps_map_type &apps);
|