Commit 2645a5
2026-03-27 11:55:28 Bob Green: -/-| /dev/null .. getting connected.md | |
| @@ 0,0 1,26 @@ | |
| + | # Getting Connected |
| + | |
| + | ## Linux |
| + | |
| + | ### Command Line |
| + | I've used a couple of cli serial tools but settled on `tio`. In both cases though, it's easy to create configuration files to make connecting easy. |
| + | |
| + | #### minicom |
| + | Available under most Linux distros. |
| + | _example_: |
| + | ``` |
| + | minicom -b 230400 -D /dev/ttyUSB0 |
| + | ``` |
| + | #### tio |
| + | _example_: |
| + | ``` |
| + | tio --baudrate 230400 -flow hard /dev/ttyUSB0 |
| + | ``` |
| + | See the instructions on [Github](https://github.com/tio/tio) for details of how to install or build tio. |
| + | |
| + | ## Windows |
| + | A couple of options under Windows that I've used. Feel free to add your favourite |
| + | |
| + | ### Tera Term |
| + | |
| + | ### Putty |