Skip to content

Commit

Permalink
temperature_compensation: enable parameters set reboot_required
Browse files Browse the repository at this point in the history
 - min/max are unnecessary with boolean
  • Loading branch information
dagar authored Apr 27, 2020
1 parent cc62a52 commit 8cd848f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@
* Thermal compensation for accelerometer sensors.
*
* @group Thermal Compensation
* @min 0
* @max 1
* @reboot_required true
* @boolean
*/
PARAM_DEFINE_INT32(TC_A_ENABLE, 0);
Expand Down
3 changes: 1 addition & 2 deletions src/modules/temperature_compensation/temp_comp_params_baro.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@
* Thermal compensation for barometric pressure sensors.
*
* @group Thermal Compensation
* @min 0
* @max 1
* @reboot_required true
* @boolean
*/
PARAM_DEFINE_INT32(TC_B_ENABLE, 0);
Expand Down
3 changes: 1 addition & 2 deletions src/modules/temperature_compensation/temp_comp_params_gyro.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@
* Thermal compensation for rate gyro sensors.
*
* @group Thermal Compensation
* @min 0
* @max 1
* @reboot_required true
* @boolean
*/
PARAM_DEFINE_INT32(TC_G_ENABLE, 0);
Expand Down

0 comments on commit 8cd848f

Please sign in to comment.