README.md aktualisiert

This commit is contained in:
Carsten Schmiemann 2023-12-31 22:00:37 +01:00
parent ed07f6dfab
commit 14eba4cd40
1 changed files with 5 additions and 8 deletions

View File

@ -37,22 +37,19 @@ UART1:
Optional Hardware Flow and Line control
------------------------------
Hardware Flow-control (RTS/CTS) is disabled by default, but can be compiled in by running:
Hardware Flow-control (RTS/CTS) is disabled if you build it just with build.sh, but there are other buld scripts:
``` bash
cmake -DFLOW_CONTROL .
make
./build_w_flow_ctrl.sh
```
Line control (DTR/DSR) is disabled by default, but can be compiled in by running:
Line control (DTR/DSR):
``` bash
cmake -DLINE_CONTROL .
make
./build_w_line_ctrl.sh
```
To enable both:
``` bash
cmake -DLINE_CONTROL -DFLOW_CONTROL .
make
./build_w_line_flow_ctrl.sh
```