Skip to content

Commit a080991

Browse files
authored
Add known issue for VS Code local network access (#3256)
See also wpilibsuite/WPILibInstaller-Avalonia#406 and wpilibsuite/allwpilib#8647
1 parent 020e393 commit a080991

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

source/docs/yearly-overview/known-issues.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,21 @@ This article details known issues (and workarounds) for FRC\ |reg| Control Syste
1010

1111
**Issue:** The 2026 Driver Station displays "ERROR -44021 Radio Version" when used with VH-109 firmware 2.0.0 or 2.0.1. This is a bug due to the version checking not being updated for the 2026 season and does not affect robot connectivity. Version 2.0.1 is the latest current version and is required by the programming kiosk for use at events.
1212

13+
### Unable to deploy on macOS when multiple VS Code versions are installed
14+
15+
**Issue:** On macOS, having multiple installed copies of Visual Studio Code can cause deploy operations to fail because of [macOS local network privacy](https://developer.apple.com/documentation/technotes/tn3179-understanding-local-network-privacy)
16+
17+
**Workaround:** Open Settings -> Privacy and Security -> Local Network Access and ensure that all VS Code versions are allowed Local Network Access.
18+
19+
If that doesn't work, you can run the following commands in a terminal and then reboot. This allows any program to access the robot's network.
20+
21+
```zsh
22+
sudo defaults write com.apple.network.local-network AllowedEthernetLocalNetworkAddresses -array "10.0.0.0/8"
23+
sudo defaults write com.apple.network.local-network AllowedWiFiLocalNetworkAddresses -array "10.0.0.0/8"
24+
```
25+
26+
.. warning:: This also allows any program to access any network with the address in the range of ``10.x.x.x``, which may be undesirable if you connect to other networks in that range beside's the robot's network. If you only access a robot with a single team number, you can substitute ``10.TE.AM.0/24``` (:ref:`TE.AM IP Notation <docs/networking/networking-introduction/ip-configurations:TE.AM IP Address Notation>`). If you only access the robot's network over eithernet or WiFi, you can only run the appropriate command.
27+
1328
### Driver Station randomly disabled
1429

1530
**Issue:** The Driver Station contains tighter safety mechanisms introduced in 2024 to protect against control issues. Some teams have seen this cause the robot to disable.

0 commit comments

Comments
 (0)