using only px4_getopt() and never the unsafe getopt()

using only <px4_getopt.h> as include, cleanup related includes
added check that all the option are valid (myoptind >= argc). if there are invalid options on some script that might now lead not to run commands
This commit is contained in:
bazooka joe
2019-02-16 11:18:02 +02:00
committed by Beat Küng
parent 3db901b238
commit 922c19aa9c
20 changed files with 131 additions and 50 deletions
+1 -1
View File
@@ -46,6 +46,7 @@
#include <px4_module.h>
#include <px4_posix.h>
#include <px4_tasks.h>
#include <px4_getopt.h>
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
@@ -56,7 +57,6 @@
#include <string.h>
#include <semaphore.h>
#include <unistd.h>
#include <platforms/px4_getopt.h>
#include <drivers/drv_hrt.h>
#include "dataman.h"