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
When ENABLE_GSM is defined, I get a No matching function for call to Adafruit_FONA::Adafruit_FONA(SoftwareSerial, int)'*
I was able to fix the problem by replacing:
SoftwareSerialfonaSS=SoftwareSerial(FONA_TX, FONA_RX);
Adafruit_FONAfona=Adafruit_FONA(&fonaSS, FONA_RST);
[snip]
// See if the FONA is respondingwhile (! fona.begin(4800)) { // make it slow so its easy to read!
to
SoftwareSerialfonaSS=SoftwareSerial(FONA_TX, FONA_RX);
SoftwareSerial*fonaSerial=&fonaSS;
Adafruit_FONAfona=Adafruit_FONA(FONA_RST);
[snip]
// See if the FONA is respondingfonaSerial->begin(4800);
while (! fona.begin(*fonaSerial)) { // make it slow so its easy to read!
But I get Low memory available, stability problems may occur. (Issue #5)
The text was updated successfully, but these errors were encountered:
Im using your FONA library samyk, but still getting same error
EDIT: seems that is was anyway somehow using wrong one. I removed all FONA librarys and but your version again and no same error anymore. Now i have errors from RF24 but i will but those to different bug
When ENABLE_GSM is defined, I get a No matching function for call to Adafruit_FONA::Adafruit_FONA(SoftwareSerial, int)'*
I was able to fix the problem by replacing:
to
But I get Low memory available, stability problems may occur. (Issue #5)
The text was updated successfully, but these errors were encountered: