Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit a8966d1

Browse files
author
iwahdan88
committed
Firmware version [v1.18.1.r6]
-Fixed issue of LTE connection termination when `lte.isattached()` is called after PPP interface established
1 parent 6d96f70 commit a8966d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

esp32/mods/modlte.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ static bool lte_check_attached(void) {
235235
}
236236
}
237237
}
238-
if (attached && lteppp_get_state() <= E_LTE_PPP) {
238+
if (attached && lteppp_get_state() < E_LTE_PPP) {
239239
lteppp_set_state(E_LTE_ATTACHED);
240240
}
241241
//printf("This is our current LTE state: %d\n", lteppp_get_state());

esp32/pycom_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#ifndef VERSION_H_
1111
#define VERSION_H_
1212

13-
#define SW_VERSION_NUMBER "1.18.1.r5"
13+
#define SW_VERSION_NUMBER "1.18.1.r6"
1414

1515
#define LORAWAN_VERSION_NUMBER "1.0.2"
1616

0 commit comments

Comments
 (0)