Skip to content
Snippets Groups Projects
Commit 9079b540 authored by Julian Oes's avatar Julian Oes Committed by Lorenz Meier
Browse files

POSIX: be less verbose on startup

parent 9c9f22fd
No related branches found
No related tags found
No related merge requests found
......@@ -72,20 +72,19 @@ void init_once(void);
void init_once(void)
{
_shell_task_id = pthread_self();
printf("[init] shell id: %lu\n", (unsigned long)_shell_task_id);
//printf("[init] shell id: %lu\n", (unsigned long)_shell_task_id);
work_queues_init();
hrt_work_queue_init();
hrt_init();
#ifdef CONFIG_SHMEM
PX4_INFO("Syncing params to shared memory\n");
PX4_DEBUG("Syncing params to shared memory\n");
init_params();
#endif
}
void init(int argc, char *argv[], const char *app_name)
{
printf("[init] task name: %s\n", app_name);
printf("\n");
printf("______ __ __ ___ \n");
printf("| ___ \\ \\ \\ / / / |\n");
......@@ -94,8 +93,7 @@ void init(int argc, char *argv[], const char *app_name)
printf("| | / /^\\ \\ \\___ |\n");
printf("\\_| \\/ \\/ |_/\n");
printf("\n");
printf("Ready to fly.\n");
printf("\n");
printf("%s starting.\n", app_name);
printf("\n");
// set the threads name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment