HAL_Empty: use 5V voltage for HAL_EMPTY

this makes bringup easier for new boards (allows arming checks to
pass)
This commit is contained in:
Andrew Tridgell 2015-12-20 11:28:29 +11:00
parent 2442c45558
commit a73039d515
1 changed files with 1 additions and 1 deletions

View File

@ -43,5 +43,5 @@ AP_HAL::AnalogSource* AnalogIn::channel(int16_t n) {
float AnalogIn::board_voltage(void)
{
return 0;
return 5.0f;
}