10000 Squashed commit of the following: · pycom/pycom-micropython-sigfox@3264aaa · GitHub
[go: up one dir, main page]

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

Commit 3264aaa

Browse files
author
iwahdan88
committed
Squashed commit of the following:
commit b6dd783 Author: Christian Ehlers <cehlers@pycom.io> Date: Fri Feb 15 11:24:03 2019 +0100 Openthread Link Issue FIPY fix (#264) Only reference xMeshTaskHndl if LORA_OPENTHREAD_ENABLED commit 2833cf5 Author: Islam Wahdan <islam@pycom.io> Date: Fri Feb 8 21:51:54 2019 +0100 Firmware Release Candidate v1.20.0.rc7 - Pybytes v0.9.7 ## New Features * Pymesh feature added from Pygo ## Improvments * Adding do_handshake for non-blocking sockets * Gracefully handle EAGAIN return of Socket.write in AwsMQTT lib * make openthread over lora a build-time configuration option (Author: @martijnthe) * Added factory LTE modem reset option and method to check UE coverage * Updated Pybytes lib ## Bug Fixes * Fix an issue in cleaning up user threads during of soft-reset * Fix issue causing Device crash when safe booting (CTRL-F) while BLE/Wlan enabled * LTE module bug fixes * Fix Makefile bug where SIPY FIPY and LOPY4 excluded secure boot co-authored by: @Xykon [cehlers@pycom.io](mailto:cehlers@pycom.io) and @martijnthe commit a8a62b0 Author: Martijn Thé <martijnthe@users.noreply.github.com> Date: Fri Feb 1 17:15:07 2019 +0100 build config: make openthread over lora a build-time configuration option (#253) Adds a make variable to disable openthread. By default it's still enabled. To disable it, add `OPENTHREAD=off` to the `make` invocation. This shaves off 160KB of the .bin, making the firmware fit in the old OTA slot of 1536KB.
1 parent a3a8dec commit 3264aaa

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

esp32/mods/modlte.c

Lines changed: 4 additions & 0 deletions
8000 Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ extern TaskHandle_t mpTaskHandle;
100100
extern TaskHandle_t svTaskHandle;
101101
#if defined(FIPY)
102102
extern TaskHandle_t xLoRaTaskHndl;
103+
#ifdef LORA_OPENTHREAD_ENABLED
103104
extern TaskHandle_t xMeshTaskHndl;
105+
#endif
104106
extern TaskHandle_t xSigfoxTaskHndl;
105107
#endif
106108
extern TaskHandle_t xLTETaskHndl;
@@ -316,7 +318,9 @@ static void TASK_LTE_UPGRADE(void *pvParameters){
316318
#if defined(FIPY)
317319
vTaskSuspend(xLoRaTaskHndl);
318320
vTaskSuspend(xSigfoxTaskHndl);
321+
#ifdef LORA_OPENTHREAD_ENABLED
319322
vTaskSuspend(xMeshTaskHndl);
323+
#endif
320324
#endif
321325
vTaskSuspend(xLTETaskHndl);
322326

0 commit comments

Comments
 (0)
0