summaryrefslogtreecommitdiff
path: root/src/MTS_IO_QuectelRadio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/MTS_IO_QuectelRadio.cpp')
-rw-r--r--src/MTS_IO_QuectelRadio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/MTS_IO_QuectelRadio.cpp b/src/MTS_IO_QuectelRadio.cpp
index 2bc4fb6..defe863 100644
--- a/src/MTS_IO_QuectelRadio.cpp
+++ b/src/MTS_IO_QuectelRadio.cpp
@@ -1676,7 +1676,7 @@ const std::vector<std::string>& QuectelRadio::getDiagCommands(bool) {
return vCommands;
}
-ICellularRadio::CODE QuectelRadio::setTimeFormat(void) {
+ICellularRadio::CODE QuectelRadio::setTimeFormat() {
printTrace("%s| Set standard time format", getName().c_str());
ICellularRadio::CODE rc;
// Set year format in YYYY first, in case it is in YY format to get accurate year
@@ -1689,7 +1689,7 @@ ICellularRadio::CODE QuectelRadio::setTimeFormat(void) {
}
// Set command enables the automatic time zone update
- std::string sCmdCTZU("AT+CTZU=3");
+ std::string sCmdCTZU("AT+CTZU=1");
rc = sendBasicCommand(sCmdCTZU);
if (rc != SUCCESS) {