-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Update libraries/SoftwareSerial/SoftwareSerial.h #58
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
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LJNielsenDk
commented
Feb 23, 2012
I'd love to see this merged in, I was annoyed at not having this the other day.
Closed
pasky
referenced
this pull request
in pasky/Energia
Jun 15, 2012
pasky
referenced
this pull request
in pasky/Energia
Jun 15, 2012
Implementation of micros() — Fix for issue energia#58 Limited differences.
@cmaglie
cmaglie
added
feature request
A request to make an enhancement (not a bug fix)
Library: SoftwareSerial
The SoftwareSerial Arduino library
labels
Apr 8, 2015
tbowmo
pushed a commit
to tbowmo/Arduino
that referenced
this pull request
Jul 14, 2016
simplify wait(), substitute waitForReply(), adding watchdog resets
sandeepmistry
added a commit
to sandeepmistry/Arduino
that referenced
this pull request
Jul 18, 2016
To allow sketches to override value as per arduino#58.
I could not merge and rebase this via the command line, so I've manually made the change in: b37430b.
flatsiedatsie
commented
Feb 26, 2020
For some reason I wasn't able to override the value.
#define _SS_MAX_RX_BUFF 255 // The size of the software serial buffer
#include <SoftwareSerial.h> // A software library for serial communication. In this case we use it to talk to the GSM modem.
This still left me with a 64 byte buffer. It's a mystery.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I wrapped _SS_MAX_RX_BUFF in "#ifndef // #endif" so that it can be customised in applications needing a larger buffer (for instance when reading SMS messages from a GPRS module)