Add instruction to enlarge serial buffer on arduino

parent 62511563
K40 laser rasterized images sends fast and large size commands over serial,
so, the common 64 byte buffer in arduino isn't enough.
You can edit "board.txt" in arduino ide, copy the "mega 2560" board declaration, call it
"mega 2560 serial buffer 256" and then add a line like:
```
mega256.build.extra_flags=-DSERIAL_RX_BUFFER_SIZE=256 -DSERIAL_TX_BUFFER_SIZE=256
```
and then in the arduino ide select "mega 2560 serial buffer 256" board.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment