Skip to content

Commit 847f7e7

Browse files
committed
update docs to reflect systemcore not being supported
1 parent bd1e672 commit 847f7e7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/source/docs/quick-start/common-setups.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ PhotonVision requires dedicated hardware, above and beyond a roboRIO. This page
1313
The Orange Pi 5 is the only currently supported device for object detection.
1414
:::
1515

16+
## Unsupported Devices
17+
18+
The SystemCore is not supported by PhotonVision. PhotonVision is designed to utilize the entirety of the coprocessor's resources, and this could be prove to dangerous if attempted on the main robot controller.
19+
1620
## SD Cards
1721

1822
- 8GB or larger micro SD card

photon-server/src/main/java/org/photonvision/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public static void main(String[] args) {
191191
try (FileWriter writer = new FileWriter(notSupportedFile)) {
192192
writer.write("SystemCore is not a supported platform for PhotonVision.\n");
193193
writer.write("PhotonVision has been uninstalled from this device.\n");
194-
writer.write("Please visit https://docs.photonvision.org for supported platforms.");
194+
writer.write("Please visit https://docs.photonvision.org/en/stable/docs/quick-start/common-setups.html#Unsupported-devices for more information.");
195195
}
196196
} catch (IOException e) {
197197
logger.error("Failed to create SystemCore not supported file", e);

0 commit comments

Comments
 (0)