Skip to content

Commit

Permalink
IO: Remove hint that parameter change requires reboot
Browse files Browse the repository at this point in the history
The change is effective immediately so no reboot is required. This makes the whole configuration a lot easier.
  • Loading branch information
LorenzMeier committed Jan 2, 2018
1 parent f4362c5 commit 92540fc
Showing 1 changed file with 9 additions and 17 deletions.
26 changes: 9 additions & 17 deletions src/drivers/px4io/px4io_params.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
*
* Copyright (c) 2015 PX4 Development Team. All rights reserved.
* Copyright (c) 2015-2018 PX4 Development Team. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -58,9 +58,8 @@ PARAM_DEFINE_INT32(SYS_USE_IO, 1);
/**
* Invert direction of main output channel 1
*
* Set to 1 to invert the channel, 0 for default direction.
* Enable to invert the channel.
*
* @reboot_required true
* @boolean
* @group PWM Outputs
*/
Expand All @@ -69,9 +68,8 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV1, 0);
/**
* Invert direction of main output channel 2
*
* Set to 1 to invert the channel, 0 for default direction.
* Enable to invert the channel.
*
* @reboot_required true
* @boolean
* @group PWM Outputs
*/
Expand All @@ -80,9 +78,8 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV2, 0);
/**
* Invert direction of main output channel 3
*
* Set to 1 to invert the channel, 0 for default direction.
* Enable to invert the channel.
*
* @reboot_required true
* @boolean
* @group PWM Outputs
*/
Expand All @@ -91,9 +88,8 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV3, 0);
/**
* Invert direction of main output channel 4
*
* Set to 1 to invert the channel, 0 for default direction.
* Enable to invert the channel.
*
* @reboot_required true
* @boolean
* @group PWM Outputs
*/
Expand All @@ -102,9 +98,8 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV4, 0);
/**
* Invert direction of main output channel 5
*
* Set to 1 to invert the channel, 0 for default direction.
* Enable to invert the channel.
*
* @reboot_required true
* @boolean
* @group PWM Outputs
*/
Expand All @@ -113,9 +108,8 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV5, 0);
/**
* Invert direction of main output channel 6
*
* Set to 1 to invert the channel, 0 for default direction.
* Enable to invert the channel.
*
* @reboot_required true
* @boolean
* @group PWM Outputs
*/
Expand All @@ -124,9 +118,8 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV6, 0);
/**
* Invert direction of main output channel 7
*
* Set to 1 to invert the channel, 0 for default direction.
* Enable to invert the channel.
*
* @reboot_required true
* @boolean
* @group PWM Outputs
*/
Expand All @@ -135,9 +128,8 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV7, 0);
/**
* Invert direction of main output channel 8
*
* Set to 1 to invert the channel, 0 for default direction.
* Enable to invert the channel.
*
* @reboot_required true
* @boolean
* @group PWM Outputs
*/
Expand Down

0 comments on commit 92540fc

Please sign in to comment.