forked from Archive/PX4-Autopilot
fixed typo, removed deamon example from default build
This commit is contained in:
parent
86ed36579a
commit
9b239bc001
|
@ -79,7 +79,7 @@ usage(const char *reason)
|
|||
{
|
||||
if (reason)
|
||||
fprintf(stderr, "%s\n", reason);
|
||||
fprintf(stderr, "usage: deamon {start|stop|status} [-p <additional params>]\n\n");
|
||||
fprintf(stderr, "usage: ardrone_interface {start|stop|status} [-d <UART>]\n\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
@ -271,7 +271,7 @@ int ardrone_interface_thread_main(int argc, char *argv[])
|
|||
close(ardrone_write);
|
||||
ar_multiplexing_deinit(gpios);
|
||||
|
||||
printf("[ardrone_interface] ending now...\n");
|
||||
printf("[ardrone_interface] ending now...\n\n");
|
||||
fflush(stdout);
|
||||
|
||||
thread_running = false;
|
||||
|
|
|
@ -58,7 +58,7 @@ CONFIGURED_APPS += systemcmds/mixer
|
|||
|
||||
# Tutorial code from
|
||||
# https://pixhawk.ethz.ch/px4/dev/deamon
|
||||
CONFIGURED_APPS += examples/px4_deamon_app
|
||||
# CONFIGURED_APPS += examples/px4_deamon_app
|
||||
|
||||
CONFIGURED_APPS += uORB
|
||||
|
||||
|
|
Loading…
Reference in New Issue