-
-
Notifications
You must be signed in to change notification settings - Fork 129
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
Add generic byte RingBuffer class #8
Conversation
facchinm
commented
Jul 1, 2016
- cloned from samd core
- implement addStorage() API to allow static/dynamic size increase
The data provided from gyroscope has no sense without timing information. This means that a correct FIFO or rate-limiting must be implemented from the sub-class. Close #1
it's now implicit from general API version
* cloned from samd core * implement addStorage() API to allow static/dynamic size increase
Does this code depend upon SAMD's atomic access to "int" type? |
Hi Paul, |
Agreed, disabling interrupts probably adds too much overhead. Using more than 8 bits for the head and tail index probably also slows the code too much on AVR. I'd recommend something like this, and in the documentation mention the maximum total buffer size is limited to 256 bytes on AVR.
I do believe this feature will make a lot of people very happy, even if the total size is restricted to 256 bytes on AVR chips. Any idea what the user-visible API will be in the HardwareSerial class? RingBuffer is meant to remain private, right? |
On AVR, RingBuffer::addStorage() would also need to check the _size parameter to limit to the maximum. |
Was any decision or proposal ever made for the public API for sketches? Would addStorage() also be in the HardwareSerial object? Or would it be 2 different function names, one for adding to the read buffer and another for writing? I'd like to try implementing this. Is that ok? Obviously the last thing I want is to publish anything which needs to be kept confidential, or to end up causing compatibility problems. |
I'd leave a single (generic) function in RingBuffer class while specializing in classes using it (like |
Perhaps the words "Read" and "Write" would be more consistent than "Tx" and "Rx", with the rest of the Arduino API?
So it's ok to discuss on the public developer list? This is a private area, so I'm always like to double check before posting anything in public. |
@facchinm I believe we can close this one? Looks like ancient history 😉 |
Obsolete, due to templated RingBuffer. |
I disagree. The template does NOT solve the need for users to increase the buffer sizes from their Arduino sketches. The buffer size can only be changed by editing the private type within the hardware serial class, and even that is well hidden behind a typedef, making it utterly inaccessible to all but the most advanced users willing to edit the core library code. This issue is not resolved. The RingBuffer template is not solution to meet the needs of users to have a larger buffer. It is utterly unusable from Arduino sketches. The issue is not solved. It should be reopened. |
@PaulStoffregen this was a quite outdated PR with next to no hope to salvage anything from it. The issue you are raising in your comment is about the capability to configure the size of a ringbuffer to ones liking. If you feel that this is something we should make available I'll invite you to create an issue or point us towards an existing one. |
Ah and here it is: #115. |