Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 ubuntu 中连接到串行电缆上的 galileo?
我已经安装了腻子并将波特率设置为115200。我如何知道板子在哪个端口上?有命令吗?是 /dev/ttys0 吗?
谢谢 C
Galileo 1 和 2 的串行电缆略有不同。这些说明适用于带有 FTDI 电缆的 Galileo 2(连接到计算机端的 USB)。
如果您使用的是 Ubuntu,则不需要 Putty。GNU screen 在命令行终端上做得很好。你可以安装它
sudo apt-get install screen
之后,您可以使用 screen 访问串行端口:
sudo screen /dev/ttyUSB0 115200,-ixoff,ixon
现在启动 Galileo 设备应该会让你进入串行控制台。