You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because the variables txPin and rxPin are defined as global variables in SoftwareSerial.cpp (/CurieSoftwareSerial/SoftwareSerial.cpp) they cannot be used in sketches. This is going to break a lot of existing sketches since they are commonly used variable names in sketches. Please make these variables private or prepend an underscore (_txPin) or make them more specific (curieSwSerialTXPin) or other convention to differentiate.