platformio / platformio-vscode-ide

PlatformIO IDE for VSCode: The next generation integrated development environment for IoT
https://marketplace.visualstudio.com/items?itemName=platformio.platformio-ide
Apache License 2.0
1.18k stars 188 forks source link

useless port's clogs the interface #4068

Closed chiboreache closed 2 weeks ago

chiboreache commented 2 weeks ago

Screenshot_20240610_143059

chiboreache commented 2 weeks ago
sudo nano /etc/systemd/system/remove-ttys.service
[Unit]
Description=Remove /dev/ttyS* devices

[Service]
Type=oneshot
ExecStart=/bin/bash -c 'for i in {0..31}; do rm /dev/ttyS$i; done'
RemainAfterExit=true

[Install]
WantedBy=multi-user.target
sudo systemctl daemon-reload && sudo systemctl enable --now remove-ttys.service

Screenshot_20240612_170646