mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-29 02:21:41 +00:00
Enable detecting generic Linux ARM32 in Platform enum (#1110)
This commit is contained in:
@@ -166,6 +166,8 @@ public enum Platform {
|
|||||||
} else if (RuntimeDetector.isArm64()) {
|
} else if (RuntimeDetector.isArm64()) {
|
||||||
// TODO - os detection needed?
|
// TODO - os detection needed?
|
||||||
return LINUX_AARCH64;
|
return LINUX_AARCH64;
|
||||||
|
} else if (RuntimeDetector.isArm32()) {
|
||||||
|
return LINUX_ARM32;
|
||||||
} else {
|
} else {
|
||||||
// Unknown or otherwise unsupported platform
|
// Unknown or otherwise unsupported platform
|
||||||
return Platform.UNKNOWN;
|
return Platform.UNKNOWN;
|
||||||
|
|||||||
Reference in New Issue
Block a user