-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RX Buffer max size is 500byte? #53
Comments
The head & tail variables are only 8 bits, so anything over 255 bytes could be expected to fail. |
ok, thanks, but just setting them to uint16_t doesn't solve the problem, isn't it? (including all method internal variables) |
Dirk hast du eine Lösung gefunden? ich stehe vor dem selben Problem. mein Stromzähler erzeugt natürlich auch einen overflow. |
@Rothammel unfortunately not, I stopped and went back to my Raspberry Pi / Python solution, which is running fine, but is somehow oversized ;-) Anyway, but it works. |
dann probiere einmal NeoSWSerial |
I have to read a stream with nearly 700 byte from my smart meter (data from an IR diode at 9600 baud).
When using the library with a Mega2560 board (rx pin 48) I always get a "serial buffer overload" error when 500 bytes were received.
I already changed the size to
#define RX_BUFFER_SIZE 1024
but it still ends at 500 bytes read.
The text was updated successfully, but these errors were encountered: