Skip to content

Fix GSM Examples formatting [MKC-356] #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ unsigned long sendNTPpacket(IPAddress& address)
//Serial.println("6");
}
```

### MKR GSM Make Voice Call

Get your board to make phone calls from the Serial Monitor.
Expand Down Expand Up @@ -1554,35 +1555,35 @@ Check [http://www.worldtimezone.com/gsm.html](http://www.worldtimezone.com/gsm.h

/*

Band Management
Band Management

This sketch, for the MKR GSM 1400 board, checks the band
This sketch, for the MKR GSM 1400 board, checks the band

currently configured in the modem and allows you to change
currently configured in the modem and allows you to change

it.
it.

Please check http://www.worldtimezone.com/gsm.html
Please check http://www.worldtimezone.com/gsm.html

Usual configurations:
Usual configurations:

Europe, Africa, Middle East: E-GSM(900)+DCS(1800)
Europe, Africa, Middle East: E-GSM(900)+DCS(1800)

USA, Canada, South America: GSM(850)+PCS(1900)
USA, Canada, South America: GSM(850)+PCS(1900)

Mexico: PCS(1900)
Mexico: PCS(1900)

Brazil: GSM(850)+E-GSM(900)+DCS(1800)+PCS(1900)
Brazil: GSM(850)+E-GSM(900)+DCS(1800)+PCS(1900)

Circuit:
Circuit:

* MKR GSM 1400 board
MKR GSM 1400 board

* Antenna
Antenna

created 12 June 2012
created 12 June 2012

by Javier Zorzano, Scott Fitzgerald
by Javier Zorzano, Scott Fitzgerald

*/

Expand Down Expand Up @@ -1733,15 +1734,13 @@ String askUser() {
newBand = GSM_MODE_UMTS;

} else if (c == '8') {

newBand = GSM_MODE_GSM850_EGSM_PCS_UMTS;

} else {

newBand = "GSM_MODE_UNDEFINED";

}

return newBand;
}
```
Expand Down