diff --git a/README.md b/README.md index ec138d0..ac1cf45 100644 --- a/README.md +++ b/README.md @@ -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 ```