mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
and remove the px4_ prefix, except for px4_config.h.
command to update includes:
for k in app.h atomic.h cli.h console_buffer.h defines.h getopt.h i2c.h init.h log.h micro_hal.h module.h module_params.h param.h param_macros.h posix.h sem.h sem.hpp shmem.h shutdown.h tasks.h time.h workqueue.h; do for i in $(grep -rl 'include <px4_'$k src platforms boards); do sed -i 's/#include <px4_'$k'/#include <px4_platform_common\/'$k/ $i; done; done
for in $(grep -rl 'include <px4_config.h' src platforms boards); do sed -i 's/#include <px4_config.h/#include <px4_platform_common\/px4_config.h'/ $i; done
Transitional headers for submodules are added (px4_{defines,log,time}.h)
122 lines
2.5 KiB
C++
122 lines
2.5 KiB
C++
/* definitions of builtin command list - automatically generated, do not edit */
|
|
#include <px4_platform_common/time.h>
|
|
#include <px4_platform_common/posix.h>
|
|
#include <px4_platform_common/log.h>
|
|
|
|
#include "apps.h"
|
|
|
|
#include <cstdio>
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include <cstdlib>
|
|
|
|
#define MODULE_NAME "px4"
|
|
|
|
extern "C" {
|
|
|
|
${builtin_apps_decl_string}
|
|
int shutdown_main(int argc, char *argv[]);
|
|
int list_tasks_main(int argc, char *argv[]);
|
|
int list_files_main(int argc, char *argv[]);
|
|
int list_devices_main(int argc, char *argv[]);
|
|
int list_topics_main(int argc, char *argv[]);
|
|
int sleep_main(int argc, char *argv[]);
|
|
int wait_for_topic(int argc, char *argv[]);
|
|
|
|
}
|
|
|
|
extern void px4_show_devices(void);
|
|
|
|
void init_app_map(apps_map_type &apps)
|
|
{
|
|
${builtin_apps_string}
|
|
apps["shutdown"] = shutdown_main;
|
|
apps["list_tasks"] = list_tasks_main;
|
|
apps["list_files"] = list_files_main;
|
|
apps["list_devices"] = list_devices_main;
|
|
apps["list_topics"] = list_topics_main;
|
|
apps["sleep"] = sleep_main;
|
|
apps["wait_for_topic"] = wait_for_topic;
|
|
}
|
|
|
|
void list_builtins(apps_map_type &apps)
|
|
{
|
|
printf("Builtin Commands:\n");
|
|
for (apps_map_type::iterator it = apps.begin(); it != apps.end(); ++it) {
|
|
printf(" %s\n", it->first.c_str());
|
|
}
|
|
}
|
|
|
|
int shutdown_main(int argc, char *argv[])
|
|
{
|
|
printf("Shutting down\n");
|
|
system_exit(0);
|
|
}
|
|
|
|
int list_tasks_main(int argc, char *argv[])
|
|
{
|
|
px4_show_tasks();
|
|
return 0;
|
|
}
|
|
|
|
int list_devices_main(int argc, char *argv[])
|
|
{
|
|
px4_show_devices();
|
|
return 0;
|
|
}
|
|
|
|
int list_topics_main(int argc, char *argv[])
|
|
{
|
|
px4_show_topics();
|
|
return 0;
|
|
}
|
|
|
|
int list_files_main(int argc, char *argv[])
|
|
{
|
|
px4_show_files();
|
|
return 0;
|
|
}
|
|
|
|
int sleep_main(int argc, char *argv[])
|
|
{
|
|
if (argc != 2) {
|
|
PX4_WARN( "Usage: sleep <seconds>" );
|
|
return 1;
|
|
}
|
|
|
|
unsigned long usecs = 1000000UL * atol(argv[1]);
|
|
printf("Sleeping for %s s; (%lu us).\n", argv[1], usecs);
|
|
px4_usleep(usecs);
|
|
return 0;
|
|
}
|
|
|
|
#include "uORB/uORB.h"
|
|
|
|
int wait_for_topic(int argc, char *argv[])
|
|
{
|
|
if (argc < 2 || argc > 3) {
|
|
printf("Usage: wait_for_topic <topic> [timeout_sec]\n");
|
|
return 1;
|
|
}
|
|
|
|
struct orb_metadata meta = { .o_name = argv[1],
|
|
.o_size = 0,
|
|
.o_size_no_padding = 0,
|
|
.o_fields = nullptr };
|
|
|
|
unsigned int timeout = (argc == 3) ? (unsigned int)atoi(argv[2]) : 0;
|
|
unsigned int elapsed = 0;
|
|
|
|
printf("Waiting for topic %s timeout %u\n", argv[1], timeout);
|
|
|
|
while (orb_exists(&meta, 0) != 0 && (timeout && (elapsed < timeout)))
|
|
{
|
|
px4_sleep(1);
|
|
elapsed += 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|