[hal] Remove FPGA functions that won't exist on SC (#8273)

This commit is contained in:
Gold856
2025-10-04 18:58:12 -04:00
committed by GitHub
parent 5c719ced5f
commit b1aaabc1c6
8 changed files with 0 additions and 149 deletions

View File

@@ -171,18 +171,6 @@ HAL_RuntimeType HAL_GetRuntimeType(void) {
return runtimeType;
}
int32_t HAL_GetFPGAVersion(int32_t* status) {
hal::init::CheckInit();
*status = HAL_HANDLE_ERROR;
return 0;
}
int64_t HAL_GetFPGARevision(int32_t* status) {
hal::init::CheckInit();
*status = HAL_HANDLE_ERROR;
return 0;
}
void HAL_GetSerialNumber(struct WPI_String* serialNumber) {
const char* serialNum = std::getenv("serialnum");
if (!serialNum) {