AP_InertialSensor: fixed example build

This commit is contained in:
Andrew Tridgell 2013-09-07 21:03:59 +10:00
parent 905c84bb4c
commit ff0f6bcd42
3 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ void loop(void)
}
if( user_input == 'r' || user_input == 'R' ) {
hal.scheduler->reboot();
hal.scheduler->reboot(false);
}
}
}

View File

@ -96,7 +96,7 @@ void loop(void)
}
if( user_input == 'r' || user_input == 'R' ) {
hal.scheduler->reboot();
hal.scheduler->reboot(false);
}
}
}

View File

@ -79,7 +79,7 @@ void loop(void)
}
if( user_input == 'r' || user_input == 'R' ) {
hal.scheduler->reboot();
hal.scheduler->reboot(false);
}
}
}