README.md aktualisiert

This commit is contained in:
Carsten Schmiemann 2023-12-31 22:00:37 +01:00
parent ed07f6dfab
commit 14eba4cd40

View file

@ -37,22 +37,19 @@ UART1:
Optional Hardware Flow and Line control 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 ``` bash
cmake -DFLOW_CONTROL . ./build_w_flow_ctrl.sh
make
``` ```
Line control (DTR/DSR) is disabled by default, but can be compiled in by running: Line control (DTR/DSR):
``` bash ``` bash
cmake -DLINE_CONTROL . ./build_w_line_ctrl.sh
make
``` ```
To enable both: To enable both:
``` bash ``` bash
cmake -DLINE_CONTROL -DFLOW_CONTROL . ./build_w_line_flow_ctrl.sh
make
``` ```