Fixed overzealous px4_ prefixing

Some files had px4_px4_ prefixed functions.

Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
Mark Charlebois
2015-05-06 15:32:04 -07:00
parent c5237f7f6f
commit 0c1c58c418
6 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -414,7 +414,7 @@ usage(const char *reason)
* Makefile does only apply to this management task.
*
* The actual stack size should be set in the call
* to px4_px4_task_spawn_cmd().
* to px4_task_spawn_cmd().
*/
int ex_fixedwing_control_main(int argc, char *argv[])
{
@@ -431,7 +431,7 @@ int ex_fixedwing_control_main(int argc, char *argv[])
}
thread_should_exit = false;
deamon_task = px4_px4_task_spawn_cmd("ex_fixedwing_control",
deamon_task = px4_task_spawn_cmd("ex_fixedwing_control",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 20,
2048,
@@ -95,7 +95,7 @@ static void usage(const char *reason)
* Makefile does only apply to this management task.
*
* The actual stack size should be set in the call
* to px4_px4_task_spawn_cmd().
* to px4_task_spawn_cmd().
*/
int flow_position_estimator_main(int argc, char *argv[])
{
@@ -111,7 +111,7 @@ int flow_position_estimator_main(int argc, char *argv[])
}
thread_should_exit = false;
daemon_task = px4_px4_task_spawn_cmd("flow_position_estimator",
daemon_task = px4_task_spawn_cmd("flow_position_estimator",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 5,
4000,
@@ -87,7 +87,7 @@ static void usage(const char *reason)
* Makefile does only apply to this management task.
*
* The actual stack size should be set in the call
* to px4_px4_task_spawn_cmd().
* to px4_task_spawn_cmd().
*/
int matlab_csv_serial_main(int argc, char *argv[])
{
@@ -103,7 +103,7 @@ int matlab_csv_serial_main(int argc, char *argv[])
}
thread_should_exit = false;
daemon_task = px4_px4_task_spawn_cmd("matlab_csv_serial",
daemon_task = px4_task_spawn_cmd("matlab_csv_serial",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 5,
2000,
+2 -2
View File
@@ -408,7 +408,7 @@ usage(const char *reason)
* Makefile does only apply to this management task.
*
* The actual stack size should be set in the call
* to px4_px4_task_spawn_cmd().
* to px4_task_spawn_cmd().
*/
int rover_steering_control_main(int argc, char *argv[])
{
@@ -425,7 +425,7 @@ int rover_steering_control_main(int argc, char *argv[])
}
thread_should_exit = false;
deamon_task = px4_px4_task_spawn_cmd("rover_steering_control",
deamon_task = px4_task_spawn_cmd("rover_steering_control",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 20,
2048,
@@ -132,7 +132,7 @@ usage(const char *reason)
* Makefile does only apply to this management task.
*
* The actual stack size should be set in the call
* to px4_px4_task_spawn_cmd().
* to px4_task_spawn_cmd().
*/
int attitude_estimator_so3_main(int argc, char *argv[])
{
@@ -149,7 +149,7 @@ int attitude_estimator_so3_main(int argc, char *argv[])
}
thread_should_exit = false;
attitude_estimator_so3_task = px4_px4_task_spawn_cmd("attitude_estimator_so3",
attitude_estimator_so3_task = px4_task_spawn_cmd("attitude_estimator_so3",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 5,
14000,
+1 -1
View File
@@ -65,7 +65,7 @@ int reboot_main(int argc, char *argv[])
}
}
systemreset(to_bootloader);
px4_systemreset(to_bootloader);
}