Skip to content

Commit 1346142

Browse files
authored
Merge pull request #64 from arduino/karlsoderby/fix-gsm-examples
Fix GSM Examples formatting [MKC-356]
2 parents 79afd8a + add526b commit 1346142

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/mkr-gsm-library-examples/mkr-gsm-library-examples.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,7 @@ unsigned long sendNTPpacket(IPAddress& address)
400400
//Serial.println("6");
401401
}
402402
```
403+
403404
### MKR GSM Make Voice Call
404405

405406
Get your board to make phone calls from the Serial Monitor.
@@ -1554,35 +1555,35 @@ Check [http://www.worldtimezone.com/gsm.html](http://www.worldtimezone.com/gsm.h
15541555
15551556
/*
15561557
1557-
Band Management
1558+
Band Management
15581559
1559-
This sketch, for the MKR GSM 1400 board, checks the band
1560+
This sketch, for the MKR GSM 1400 board, checks the band
15601561
1561-
currently configured in the modem and allows you to change
1562+
currently configured in the modem and allows you to change
15621563
1563-
it.
1564+
it.
15641565
1565-
Please check http://www.worldtimezone.com/gsm.html
1566+
Please check http://www.worldtimezone.com/gsm.html
15661567
1567-
Usual configurations:
1568+
Usual configurations:
15681569
1569-
Europe, Africa, Middle East: E-GSM(900)+DCS(1800)
1570+
Europe, Africa, Middle East: E-GSM(900)+DCS(1800)
15701571
1571-
USA, Canada, South America: GSM(850)+PCS(1900)
1572+
USA, Canada, South America: GSM(850)+PCS(1900)
15721573
1573-
Mexico: PCS(1900)
1574+
Mexico: PCS(1900)
15741575
1575-
Brazil: GSM(850)+E-GSM(900)+DCS(1800)+PCS(1900)
1576+
Brazil: GSM(850)+E-GSM(900)+DCS(1800)+PCS(1900)
15761577
1577-
Circuit:
1578+
Circuit:
15781579
1579-
* MKR GSM 1400 board
1580+
MKR GSM 1400 board
15801581
1581-
* Antenna
1582+
Antenna
15821583
1583-
created 12 June 2012
1584+
created 12 June 2012
15841585
1585-
by Javier Zorzano, Scott Fitzgerald
1586+
by Javier Zorzano, Scott Fitzgerald
15861587
15871588
*/
15881589
@@ -1733,15 +1734,13 @@ String askUser() {
17331734
newBand = GSM_MODE_UMTS;
17341735
17351736
} else if (c == '8') {
1736-
17371737
newBand = GSM_MODE_GSM850_EGSM_PCS_UMTS;
17381738
17391739
} else {
17401740
17411741
newBand = "GSM_MODE_UNDEFINED";
17421742
17431743
}
1744-
17451744
return newBand;
17461745
}
17471746
```

0 commit comments

Comments
 (0)