You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
412 B
17 lines
412 B
9 years ago
|
/* declarations of builtin command list - automatically generated, do not edit */
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "px4_tasks.h" // px4_main_t
|
||
|
#include <map>
|
||
6 years ago
|
#include <string>
|
||
9 years ago
|
|
||
|
// Maps an app name to it's function.
|
||
|
typedef std::map<std::string, px4_main_t> apps_map_type;
|
||
|
|
||
|
// Initialize an apps map.
|
||
8 years ago
|
__EXPORT void init_app_map(apps_map_type &apps);
|
||
9 years ago
|
|
||
|
// List an apps map.
|
||
8 years ago
|
__EXPORT void list_builtins(apps_map_type &apps);
|