Skip to content
Snippets Groups Projects
Commit 0001031e authored by bresch's avatar bresch Committed by Daniel Agar
Browse files

Failure Detector - Rename parameters and change group

parent 93ba11c2
No related branches found
No related tags found
No related merge requests found
......@@ -72,8 +72,8 @@ public:
private:
DEFINE_PARAMETERS(
(ParamInt<px4::params::COM_FAIL_P>) _fail_trig_pitch,
(ParamInt<px4::params::COM_FAIL_R>) _fail_trig_roll
(ParamInt<px4::params::FD_FAIL_P>) _fail_trig_pitch,
(ParamInt<px4::params::FD_FAIL_R>) _fail_trig_roll
)
// Subscriptions
......
......@@ -50,9 +50,9 @@
* @min 0
* @max 180
* @unit degrees
* @group Commander
* @group FailureDetector
*/
PARAM_DEFINE_INT32(COM_FAIL_R, 60);
PARAM_DEFINE_INT32(FD_FAIL_R, 60);
/**
* FailureDetector Max Pitch
......@@ -62,6 +62,6 @@ PARAM_DEFINE_INT32(COM_FAIL_R, 60);
* @min 0
* @max 180
* @unit degrees
* @group Commander
* @group FailureDetector
*/
PARAM_DEFINE_INT32(COM_FAIL_P, 60);
PARAM_DEFINE_INT32(FD_FAIL_P, 60);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment