POSIX: Improve shell so it does not spam the user, enable CTRL-C to actually quit the application. Twiddle the app boot delay to avoid a race with the commander app. Needs a proper fix on the startup sequencing.
@ -143,7 +143,7 @@ px4_task_t px4_task_spawn_cmd(const char *name, int scheduler, int priority, int
@@ -143,7 +143,7 @@ px4_task_t px4_task_spawn_cmd(const char *name, int scheduler, int priority, int
// Must add NULL at end of argv
taskdata->argv[argc]=(char*)0;
PX4_WARN("starting task %s",name);
PX4_DEBUG("starting task %s",name);
rv=pthread_attr_init(&attr);
if(rv!=0){
@ -203,7 +203,7 @@ int px4_task_delete(px4_task_t id)
@@ -203,7 +203,7 @@ int px4_task_delete(px4_task_t id)