Skip to content
Snippets Groups Projects
Commit 09bb884d authored by dawehr's avatar dawehr
Browse files

Fixing missing PIDs.

parent 43164851
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
#define YPOS_KP 0.55 #define YPOS_KP 0.55
#define YPOS_KI 0.0075 #define YPOS_KI 0.0075
#define YPOS_KD 0.0 #define YPOS_KD 0.0
#define YPOS_ALPHA 0 #define YPOS_ALPHA 0.88
//Pitch constants //Pitch constants
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
#define XPOS_KP 0.55 #define XPOS_KP 0.55
#define XPOS_KI 0.0075 #define XPOS_KI 0.0075
#define XPOS_KD 0.0 #define XPOS_KD 0.0
#define XPOS_ALPHA 0 #define XPOS_ALPHA 0.88
//Throttle constants //Throttle constants
......
...@@ -231,6 +231,7 @@ int control_algorithm_init(parameter_t * ps) ...@@ -231,6 +231,7 @@ int control_algorithm_init(parameter_t * ps)
graph_set_param_val(graph, ps->alt_pid, PID_KP, ALT_ZPOS_KP); graph_set_param_val(graph, ps->alt_pid, PID_KP, ALT_ZPOS_KP);
graph_set_param_val(graph, ps->alt_pid, PID_KI, ALT_ZPOS_KI); graph_set_param_val(graph, ps->alt_pid, PID_KI, ALT_ZPOS_KI);
graph_set_param_val(graph, ps->alt_pid, PID_KD, ALT_ZPOS_KD); graph_set_param_val(graph, ps->alt_pid, PID_KD, ALT_ZPOS_KD);
graph_set_param_val(graph, ps->alt_pid, PID_ALPHA, ALT_ZPOS_ALPHA);
// Set PWM difference clamping limits // Set PWM difference clamping limits
graph_set_param_val(graph, ps->clamp_d_pwmP, BOUNDS_MIN, -PWM_DIFF_BOUNDS); graph_set_param_val(graph, ps->clamp_d_pwmP, BOUNDS_MIN, -PWM_DIFF_BOUNDS);
......
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