Skip to content
Snippets Groups Projects
Verified Commit 2d4bdfb0 authored by Zoe Michaela Dietmar Pfister's avatar Zoe Michaela Dietmar Pfister :gay_pride_flag:
Browse files

update host subversions

parent 83be05fe
No related branches found
No related tags found
2 merge requests!39Merge Develop into Main,!38Host Refactors and Client Changes
Pipeline #121181 passed
......@@ -62,6 +62,8 @@ void setup() {
LoggingUtilities::setupLogging(true);
esp_log_write(ESP_LOG_DEBUG, TAG_MAIN, "Mac Address: %s", WiFi.macAddress().c_str());
xMutex = xSemaphoreCreateMutex();
resendManager.init();
......@@ -144,7 +146,7 @@ void loop() {
void modeminfoloop() {
auto now = millis();
// within the next minute check if the modem is still connected
while (millis() - now < 60000) {
while (millis() - now < 10000) {
ESPNowUtilities::checkESPReceiveHeartbeat();
if (!connectionManager.isModemPoweredOn()) {
connectionManager.modemPowerOn();
......
......@@ -75,7 +75,7 @@ void loop() {
modem.waitResponse(2000);
modem.waitForNetwork(60000L);
modem.waitForNetwork(180000L);
modem.gprsConnect("m2m.public.at", "", "");
modem.waitResponse(2000);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment