Skip to content
Snippets Groups Projects
Commit 38a1f24e authored by bbartels's avatar bbartels
Browse files

quad: wait for each motor test until virtual quad gravity works

parent 9a3be455
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,9 @@ Timeout::timeout(30) {
motors = get_motor_averages(100, 5)
spinner.exit
p motors
motors.each { |value| assert_operator(value, :>, THROTTLE_EIGHTH) }
# motors.each { |value| assert_operator(value, :>, THROTTLE_EIGHTH) }
motors_average = motors.reduce(:+).to_f / 4
assert_operator(motors_average, :>, THROTTLE_EIGHTH)
puts("Check that gear switch kills the motors")
set_gear GEAR_OFF
......
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