Blame
|
1 | # Getting Connected |
||||||
| 2 | ||||||||
| 3 | ## Linux |
|||||||
| 4 | ||||||||
| 5 | ### Command Line |
|||||||
| 6 | 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. |
|||||||
| 7 | ||||||||
| 8 | #### minicom |
|||||||
| 9 | Available under most Linux distros. |
|||||||
|
10 | |||||||
|
11 | _example_: |
||||||
| 12 | ``` |
|||||||
| 13 | minicom -b 230400 -D /dev/ttyUSB0 |
|||||||
| 14 | ``` |
|||||||
| 15 | #### tio |
|||||||
| 16 | _example_: |
|||||||
| 17 | ``` |
|||||||
| 18 | tio --baudrate 230400 -flow hard /dev/ttyUSB0 |
|||||||
| 19 | ``` |
|||||||
| 20 | See the instructions on [Github](https://github.com/tio/tio) for details of how to install or build tio. |
|||||||
| 21 | ||||||||
| 22 | ## Windows |
|||||||
|
23 | A couple of options under Windows that I've used. Feel free to add your favourite. I don't have a favourite - both work equally well for me. |
||||||
|
24 | |||||||
| 25 | ### Tera Term |
|||||||
|
26 | Obtain from [here](https://teratermproject.github.io/index-en.html) |
||||||
|
27 | |||||||
| 28 | ### Putty |
|||||||
|
29 | Obtain from [here](https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html) |
||||||