|
2 | 2 |
|
3 | 3 | An open-source serial port access application for Linux and Windows written in C++ with Qt5. |
4 | 4 |
|
| 5 | + |
| 6 | + |
5 | 7 | ## Features |
6 | 8 | - You can view the serial port output |
7 | 9 | - In a human-readable plain text format |
8 | 10 | - In hex mode |
9 | 11 | - In a verbose mode showing specific information for each byte |
10 | 12 | - You can directly write a file to the serial port |
11 | 13 | - You can send custom input to the port (with escape codes support) |
12 | | -- You can export the data read from the port in plain text, hex or raw formats |
| 14 | +- You can export the data read from the port in plain text, hex, raw and csv formats |
13 | 15 | - Support for custom baud rates (as long as the hardware also supports it) |
14 | 16 | - Support for custom continuous transmission with a fixed packet interval |
| 17 | +- Support for custom sequences of data sending, waiting and RTS/DTR modifying |
15 | 18 | - Option to view the pinout signals and manually change the RTS and DTR pins |
| 19 | +- A lot of other small convenience features |
| 20 | + |
| 21 | +## Installing from source |
| 22 | + |
| 23 | +### Compiling |
| 24 | + |
| 25 | + git clone https://github.com/pgeorgiev98/5Com |
| 26 | + mkdir 5Com/build |
| 27 | + cd 5Com/build |
| 28 | + |
| 29 | + # Make sure you're using the qt5 version of qmake. On some distributions |
| 30 | + # you may have to call `qmake -qt=5 ..` instead for example |
| 31 | + qmake .. |
| 32 | + |
| 33 | + # You may use make -jN where N is the number of threads your CPU has. |
| 34 | + # This should greatly speed up the compilation |
| 35 | + make |
| 36 | + |
| 37 | + # You can now check if the application works as normal |
| 38 | + app/5Com |
| 39 | + |
| 40 | +### Installing |
| 41 | + |
| 42 | +After compiling you can install it by running |
| 43 | + |
| 44 | + sudo make install |
| 45 | + |
0 commit comments