Skip to content
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

Closed
wants to merge 22 commits into from
Closed

Add generic byte RingBuffer class #8

wants to merge 22 commits into from

Conversation

facchinm
Copy link
Member

@facchinm facchinm commented Jul 1, 2016

  • cloned from samd core
  • implement addStorage() API to allow static/dynamic size increase

@PaulStoffregen
Copy link

Does this code depend upon SAMD's atomic access to "int" type?

@facchinm
Copy link
Member Author

Hi Paul,
the implementation is clearly not interrupt-safe; I believe we should target 32bit MCU in the future so all the considerations should be based on that fact.
Surrounding everything with noInterrupt or ATOMIC_BLOCK-like functions could have a real impact on performance. Limiting the usage to non-IRQ scenarios will make this library "useless".
Do you have any proposal/idea on this topic?

@PaulStoffregen
Copy link

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.

class RingBuffer
{
    public:
    uint8_t _aucBuffer[RINGBUFFER_SIZE] ;
#ifdef __AVR__
    uint8_t _iHead ;
    uint8_t _iTail ;
#else
    int _iHead ;
    int _iTail ;
#endif

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?

@PaulStoffregen
Copy link

On AVR, RingBuffer::addStorage() would also need to check the _size parameter to limit to the maximum.

@PaulStoffregen
Copy link

PaulStoffregen commented Oct 19, 2016

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.

@facchinm
Copy link
Member Author

I'd leave a single (generic) function in RingBuffer class while specializing in classes using it (like Serial.increaseTxBuffer and Serial.increaseRxBuffer). However, no public discussion has been made ATM, but I think that proposing in the dev list is a really good idea.
@PaulStoffregen , feel absolutely free to propose / post a PR 😄

@PaulStoffregen
Copy link

Perhaps the words "Read" and "Write" would be more consistent than "Tx" and "Rx", with the rest of the Arduino API?

Serial.increaseReadBuffer(array1, size1);
Serial.increaseWriteBuffer(array2, size2);

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.

@aentinger
Copy link
Contributor

@facchinm I believe we can close this one? Looks like ancient history 😉

@aentinger
Copy link
Contributor

Obsolete, due to templated RingBuffer.

@aentinger aentinger closed this Nov 27, 2020
@PaulStoffregen
Copy link

PaulStoffregen commented Dec 4, 2020

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.

@aentinger
Copy link
Contributor

@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.

@aentinger
Copy link
Contributor

Ah and here it is: #115.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants