diff --git a/hal/src/main/native/systemcore/Power.cpp b/hal/src/main/native/systemcore/Power.cpp index 08ecbd2d94..5fb5f80c01 100644 --- a/hal/src/main/native/systemcore/Power.cpp +++ b/hal/src/main/native/systemcore/Power.cpp @@ -55,8 +55,9 @@ double HAL_GetVinVoltage(int32_t* status) { double HAL_GetUserVoltage3V3(int32_t* status) { initializePower(status); - *status = HAL_HANDLE_ERROR; - return 0; + // Until we have a value, make this work, as lots of other + // code depends on it. + return 3.3; } double HAL_GetUserCurrent3V3(int32_t* status) {