NeoHWSerial
NeoHWSerial copied to clipboard
Arduino HardwareSerial with attachInterrupt for RX chars
I'm trying to use `NeoHWSerial` with `NeoGPS` on an `esp32cam` board. I'm a bit confused which version I've got but it was installed with: ``` C:\Users\Mat\Documents\Arduino>arduino-cli lib install neohwserial NeoHWSerial...
- updated to Arduino IDE >=v1.5.6 library format (see https://arduino.github.io/arduino-cli/latest/library-specification/) - pass UART status byte to user receive function. Required e.g. for break detection in LIN bus - support optional...
hello, im trying to read the next characters in the sentence using .parseInt after i enter the interrupt but the UNO just stops, i send "F 100" and it just...
I have a question about why you disable the interrupts here: https://github.com/SlashDevin/NeoHWSerial/blob/master/1.6.5r2/NeoHWSerial.cpp#L214 ``` void NeoHWSerial::attachInterrupt( isr_t fn ) { uint8_t oldSREG = SREG; cli(); _isr = fn; SREG = oldSREG;...
hello SlashDevin On my Arduino DUE NeoHWSerial does not compile, I would like to use it in your excellent NeoGPS for a GPS lap timer and data logging on SD....
Hello, I am using version 1.0.5 and trying to use the flush() function from inside the library to avoid any user induced loop delay so that I can know faster...
Hello SlashDevin, I used your code to build a profibus-dp slave with my Arduino Mega up to 45Kbit. (https://www.youtube.com/watch?v=ilNgtisqOsk) Unfortunately the Mega does not support 187.5 Kb, but the Due...
I have this code ~~~ NeoSerial.begin(115200); NeoSerial1.begin(115200); ~~~ The compiler says ~~~ 'NeoSerial' was not declared in this scope ~~~ Is it not possible to use usb serial with this...