mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-06 16:58:48 +08:00
Increasing motor allowable command thresholds. Watch out!
This commit is contained in:
@@ -92,8 +92,8 @@ static inline void main_periodic( void ) {
|
||||
pitch_out = (int8_t)((0xFF) & overo_link.down.msg.pitch);
|
||||
thrust_out = (int8_t)((0xFF) & overo_link.down.msg.thrust);
|
||||
|
||||
Bound(pitch_out,-30,30);
|
||||
Bound(thrust_out,0,80);
|
||||
Bound(pitch_out,-80,80);
|
||||
Bound(thrust_out,0,100);
|
||||
|
||||
overo_link.up.msg.thrust_out = thrust_out;
|
||||
overo_link.up.msg.pitch_out = pitch_out;
|
||||
|
||||
Reference in New Issue
Block a user