Skip to content

Commit 566a9a0

Browse files
committed
update docs to reflect systemcore not being supported
1 parent bd1e672 commit 566a9a0

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ 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+
## SystemCore Support
17+
18+
The SystemCore is not supported by PhotonVision. PhotonVision is designed to utilize the entirety of the coprocessor's resources, and this could prove to be dangerous if attempted on the main robot controller.
19+
There are no current plans to support running on SystemCore alongside robot code, and any attempts to do so are entirely at your own risk and will require a separate fork of PhotonVision.
20+
1621
## SD Cards
1722

1823
- 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)