We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c79c71e commit c7ca8eeCopy full SHA for c7ca8ee
src/CatM1ConnectionHandler.cpp
@@ -51,7 +51,10 @@ CatM1ConnectionHandler::CatM1ConnectionHandler(
51
52
unsigned long CatM1ConnectionHandler::getTime()
53
{
54
- return GSM.getTime();
+ /* It is not safe to call GSM.getTime() since we don't know if modem internal
55
+ * RTC is in sync with current time.
56
+ */
57
+ return 0;
58
}
59
60
/******************************************************************************
0 commit comments