mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-05 03:21:42 +00:00
Change SystemCore to Systemcore (#8359)
This commit is contained in:
@@ -37,7 +37,7 @@ static_assert(org_wpilib_hardware_hal_HALUtil_RUNTIME_ROBORIO2 ==
|
||||
static_assert(org_wpilib_hardware_hal_HALUtil_RUNTIME_SIMULATION ==
|
||||
HAL_Runtime_Simulation);
|
||||
static_assert(org_wpilib_hardware_hal_HALUtil_RUNTIME_SYSTEMCORE ==
|
||||
HAL_Runtime_SystemCore);
|
||||
HAL_Runtime_Systemcore);
|
||||
|
||||
static JavaVM* jvm = nullptr;
|
||||
static JException illegalArgExCls;
|
||||
|
||||
@@ -33,8 +33,8 @@ HAL_ENUM(HAL_RuntimeType) {
|
||||
HAL_Runtime_RoboRIO2,
|
||||
/** Simulation runtime */
|
||||
HAL_Runtime_Simulation,
|
||||
/** SystemCore */
|
||||
HAL_Runtime_SystemCore,
|
||||
/** Systemcore */
|
||||
HAL_Runtime_Systemcore,
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
@@ -164,7 +164,7 @@ const char* HAL_GetErrorMessage(int32_t code) {
|
||||
}
|
||||
}
|
||||
|
||||
static HAL_RuntimeType runtimeType = HAL_Runtime_SystemCore;
|
||||
static HAL_RuntimeType runtimeType = HAL_Runtime_Systemcore;
|
||||
|
||||
HAL_RuntimeType HAL_GetRuntimeType(void) {
|
||||
return runtimeType;
|
||||
|
||||
Reference in New Issue
Block a user