Failure Detector - Rename parameters and change group

This commit is contained in:
bresch
2018-08-09 19:09:38 +02:00
committed by Daniel Agar
parent 93ba11c218
commit 0001031e59
2 changed files with 6 additions and 6 deletions
@@ -72,8 +72,8 @@ public:
private: private:
DEFINE_PARAMETERS( DEFINE_PARAMETERS(
(ParamInt<px4::params::COM_FAIL_P>) _fail_trig_pitch, (ParamInt<px4::params::FD_FAIL_P>) _fail_trig_pitch,
(ParamInt<px4::params::COM_FAIL_R>) _fail_trig_roll (ParamInt<px4::params::FD_FAIL_R>) _fail_trig_roll
) )
// Subscriptions // Subscriptions
@@ -50,9 +50,9 @@
* @min 0 * @min 0
* @max 180 * @max 180
* @unit degrees * @unit degrees
* @group Commander * @group FailureDetector
*/ */
PARAM_DEFINE_INT32(COM_FAIL_R, 60); PARAM_DEFINE_INT32(FD_FAIL_R, 60);
/** /**
* FailureDetector Max Pitch * FailureDetector Max Pitch
@@ -62,6 +62,6 @@ PARAM_DEFINE_INT32(COM_FAIL_R, 60);
* @min 0 * @min 0
* @max 180 * @max 180
* @unit degrees * @unit degrees
* @group Commander * @group FailureDetector
*/ */
PARAM_DEFINE_INT32(COM_FAIL_P, 60); PARAM_DEFINE_INT32(FD_FAIL_P, 60);