I've never used the receive_buffer option in rs232 configuration, and there aren't any examples showing how it's used. So, how does it work, and how would it be useful? I have my own buffer I stuff received byte in, but who puts bytes in the receive_buffer?
Ttelmah
Joined: 11 Mar 2010 Posts: 19486
Posted: Wed Apr 27, 2022 10:08 am
Don't use it if you have your own handler. Basically if you select it, the
compiler generates a complete RDA interrupt handler and will add the
code to write data to the buffer in this. Big problem it has is no support for
overflows. If the buffer does overflow all the data in the buffer is lost.
It automatically enables INT_RDA and adds it's own routine for this.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum