-
Notifications
You must be signed in to change notification settings - Fork 73
Conflict with SoftwareSerial.h library on UNO? #62
Description
Very nice piece of work, a big thanks. I seem to have a conflict when trying to use EnableInterrupt and SoftwareSerial libraries on an Arduino Uno. I have an XBee3 module I'm using for communications (a longer distance that wifi), and need to monitor a waterflow sensor that sends pulsed output according to the flow. It requires an interrupt to count pulses. If I disable SoftwareSerial I get a clean compile and the pulse counter works, but without the XBee support. If I disable the EnableInterrupt, I clean compile with XBee communications, but no pulse counting.
I don't know if you came across this, I seem to recall a comment in PInChangeInterrupt documentation relating to an issue with SoftSerial, but did not see that in your documentation.
Is there any workaround that you are aware of?
Thanks
Ray