"Calling either the OpenSerial() or SimpleOpenSerial() function will open the serial port in an interrupt-driven and buffered mode.."
How do I find what size the buffers are? A customer is having trouble that seems like it could be due to overflowing the (or at least trying to,or overwriting) the serial buffer.
Sam
Serial buffer size on MOD5234
Re: Serial buffer size on MOD5234
They default to ~3000 bytes.
You can increase them in 1500 byte increments of 1500 by changing
SERIAL_RX_BUFFERS
SERIAL_TX_BUFFERS
in nburn\include\constants.h
They default to 2
If you change ANYTHING in constants.h you must rebuild everything, system, platform and project...
(IE rebuild all)
Paul
You can increase them in 1500 byte increments of 1500 by changing
SERIAL_RX_BUFFERS
SERIAL_TX_BUFFERS
in nburn\include\constants.h
They default to 2
If you change ANYTHING in constants.h you must rebuild everything, system, platform and project...
(IE rebuild all)
Paul
Re: Serial buffer size on MOD5234
Thanks Paul!
Sam
Sam