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
In the file "Radio/src/SI4703.cpp" the waiting after a Wire.requestFrom() may be removed. It is this line: while(Wire.available() < 32) ;
In the file "Radio/src/RDA5807M.cpp" the Wire.requestFrom() is followed by a Wire.endTransmission() in four places. Those Wire.endTransmission() may be removed.
In the file "Radio/src/SI4703.cpp" the waiting after a
Wire.requestFrom()
may be removed. It is this line:while(Wire.available() < 32) ;
In the file "Radio/src/RDA5807M.cpp" the
Wire.requestFrom()
is followed by aWire.endTransmission()
in four places. ThoseWire.endTransmission()
may be removed.Explanation: Common-mistakes, number 1 and 2.
The text was updated successfully, but these errors were encountered: