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

Release xykon #377

Merged
merged 27 commits into from
Dec 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
54b8e88
BLE: Allow static passwords, remove bonded when pin changes
oligauc Oct 8, 2019
0b8c8a8
Merge pull request #64 from pycom/sec_ble
Oct 8, 2019
90eb9de
Update Jenkins File
Oct 7, 2019
6638953
mods/pyblte.c: Fix the lenght field for AT commands
robert-hh Oct 7, 2019
415af4d
mods/pybadc.c: Fix the argument handling of bits=x for adc.init()
robert-hh Oct 7, 2019
aae6c26
Restore previous wifi_on_boot behaviour.
Xykon Oct 8, 2019
3024c89
Bugfixes
Xykon Oct 8, 2019
b16e92d
Update Jenkinsfile and pycom_version.h
Xykon Oct 8, 2019
881be0e
Merge branch 'Dev' of https://github.com/pycom/pycom-micropython-sigfox
Oct 14, 2019
57b1110
Update Pybytes to 1.2.0 for new release 1.20.1.r2
Xykon Oct 30, 2019
8bc1f0c
Changes needed for idf 3.3.
geza-pycom Nov 13, 2019
aca4712
Merge pull request #65 from husigeza/idf_3.3_support
geza-pycom Nov 19, 2019
5ecc3d0
Revert "Merge pull request #65 from husigeza/idf_3.3_support" (#67)
geza-pycom Nov 22, 2019
3c65d90
PYFW-390: Update .gitignore to allow esp32/lib libraries to be updated
geza-pycom Nov 30, 2019
c5d4973
Merge pull request #69 from husigeza/PYFW-390
geza-pycom Nov 30, 2019
188ffd2
MDNS advertisement works
geza-pycom Nov 17, 2019
0ac25ff
Adding text to advertisement works
geza-pycom Nov 17, 2019
c79bb20
Query works
Nov 22, 2019
f65490d
Free up internal query results
Nov 26, 2019
1902f34
Change host_name to hostname
Nov 29, 2019
996f300
Rename text to txt
Nov 29, 2019
c2c64b5
Adding libmdns.a to esp32/lib
geza-pycom Nov 30, 2019
9d29de9
Merge pull request #68 from husigeza/mdns
geza-pycom Dec 3, 2019
2754c23
Merge branch 'master' of https://github.com/pycom/Firmware-Developmen…
Xykon Dec 12, 2019
2574760
Update _pybytes_config.py
Xykon Dec 12, 2019
ff70ded
Update modlte.c
Xykon Dec 12, 2019
d6ec0de
Update pycom_version.h
Xykon Dec 12, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion esp32/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ LIBS = -L$(ESP_IDF_COMP_PATH)/esp32/lib -L$(ESP_IDF_COMP_PATH)/esp32/ld -L$(ESP_
$(ESP_IDF_COMP_PATH)/newlib/lib/libc-psram-workaround.a \
-lfreertos -ljson -ljsmn -llwip -lnewlib -lvfs -lopenssl -lmbedtls -lwpa_supplicant \
-lxtensa-debug-module -lbt -lsdmmc -lsoc -lheap -lbootloader_support -lmicro-ecc \
-u ld_include_panic_highint_hdl -lsmartconfig_ack -lmesh -lesp_ringbuf -lcoap
-u ld_include_panic_highint_hdl -lsmartconfig_ack -lmesh -lesp_ringbuf -lcoap -lmdns
ifeq ($(BOARD), $(filter $(BOARD), FIPY))
LIBS += sigfox/modsigfox_fipy.a
endif
Expand Down
2 changes: 2 additions & 0 deletions esp32/application.mk
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ APP_INC += -I$(ESP_IDF_COMP_PATH)/coap/libcoap/include/coap
APP_INC += -I$(ESP_IDF_COMP_PATH)/coap/libcoap/examples
APP_INC += -I$(ESP_IDF_COMP_PATH)/coap/port/include
APP_INC += -I$(ESP_IDF_COMP_PATH)/coap/port/include/coap
APP_INC += -I$(ESP_IDF_COMP_PATH)/mdns/include
APP_INC += -I../lib/mp-readline
APP_INC += -I../lib/netutils
APP_INC += -I../lib/oofatfs
Expand Down Expand Up @@ -160,6 +161,7 @@ APP_MODS_SRC_C = $(addprefix mods/,\
lwipsocket.c \
machtouch.c \
modcoap.c \
modmdns.c \
)

APP_MODS_LORA_SRC_C = $(addprefix mods/,\
Expand Down
4 changes: 4 additions & 0 deletions esp32/frozen/Pybytes/_pybytes_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,10 @@ def __process_cli_activation(self, filename, activation_token):
pass
return self.__pybytes_config
else:
try:
self.__pybytes_cli_activation.close()
except:
pass
print('Unable to provision Sigfox! Please try again.')
return None

Expand Down
1 change: 1 addition & 0 deletions esp32/get_idf_libs.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def main():
shutil.copy(src + '/xtensa-debug-module/libxtensa-debug-module.a', dsttmpapp)
shutil.copy(src + '/esp_ringbuf/libesp_ringbuf.a', dsttmpapp)
shutil.copy(src + '/coap/libcoap.a', dsttmpapp)
shutil.copy(src + '/mdns/libmdns.a', dsttmpapp)
except:
print("Couldn't Copy IDF libs defaulting to Local Lib Folders!")
traceback.print_exc()
Expand Down
Binary file added esp32/lib/libmdns.a
Binary file not shown.
5 changes: 5 additions & 0 deletions esp32/mods/modlte.c
Original file line number Diff line number Diff line change
Expand Up @@ -1191,6 +1191,11 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_1(lte_ue_coverage_obj, lte_ue_coverage);
STATIC mp_obj_t lte_reset(mp_obj_t self_in) {
lte_check_init();
lte_disconnect(self_in);
if (!lte_push_at_command("AT+CFUN=0", LTE_RX_TIMEOUT_MAX_MS)) {
mp_hal_delay_ms(LTE_RX_TIMEOUT_MIN_MS);
lte_push_at_command("AT+CFUN=0", LTE_RX_TIMEOUT_MAX_MS);
}
mp_hal_delay_ms(LTE_RX_TIMEOUT_MIN_MS);
lte_push_at_command("AT^RESET", LTE_RX_TIMEOUT_MAX_MS);
lteppp_set_state(E_LTE_IDLE);
mp_hal_delay_ms(LTE_RX_TIMEOUT_MIN_MS);
Expand Down
Loading