mirror of https://github.com/ArduPilot/ardupilot
Copter: Change the direct value to the definition name
This commit is contained in:
parent
9a13b5c9b6
commit
6d8d35f272
|
@ -117,7 +117,7 @@ void ModeZigZag::run()
|
|||
|
||||
// set the direction and the total number of lines
|
||||
zigzag_direction = (Direction)constrain_int16(_direction, 0, 3);
|
||||
line_num = constrain_int16(_line_num, -1, 32767);
|
||||
line_num = constrain_int16(_line_num, ZIGZAG_LINE_INFINITY, 32767);
|
||||
|
||||
// auto control
|
||||
if (stage == AUTO) {
|
||||
|
|
Loading…
Reference in New Issue