Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of ublox-cellular-base by
Revision 20:9fedc922868e, committed 2018-10-12
- Comitter:
- Curt Black
- Date:
- Fri Oct 12 02:18:38 2018 -0500
- Parent:
- 18:eb3480afeae0
- Parent:
- 19:98e4136e3980
- Commit message:
- Merge
Changed in this revision
UbloxCellularBase.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/UbloxCellularBase.cpp Wed Sep 26 11:38:31 2018 -0500 +++ b/UbloxCellularBase.cpp Fri Oct 12 02:18:38 2018 -0500 @@ -475,7 +475,7 @@ // the modems cannot reliably auto-baud at faster rates. The faster // rate is adopted later with a specific AT command and the // UARTSerial rate is adjusted at that time - if (baud > 115200) { + if (baud != 115200) { baud = 115200; } _fh = new UARTSerial(tx, rx, baud);
--- a/UbloxCellularBase.h Wed Sep 26 11:38:31 2018 -0500 +++ b/UbloxCellularBase.h Fri Oct 12 02:18:38 2018 -0500 @@ -187,7 +187,7 @@ #if MBED_CONF_UBLOX_CELL_GEN_DRV_AT_PARSER_TIMEOUT #define AT_PARSER_TIMEOUT MBED_CONF_UBLOX_CELL_GEN_DRV_AT_PARSER_TIMEOUT #else - #define AT_PARSER_TIMEOUT 8*1000 // Milliseconds + #define AT_PARSER_TIMEOUT 55*1000 // Milliseconds #endif /** A string that would not normally be sent by the modem on the AT interface.