8000 Firmware release candidate v1.20.0.rc6 · pycom/pycom-micropython-sigfox@1058d3b · 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 1058d3b

Browse files
author
iwahdan88
committed
Firmware release candidate v1.20.0.rc6
Merge latest updates on IDF V3.1
1 parent bf11cc0 commit 1058d3b

38 files changed

+6
-2
lines changed

esp32/bootloader/esp32.bootloader.ld

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ SECTIONS
119119
.iram.text :
120120
{
121121
_stext = .;
122+
_loader_text_start = .;
122123
_text_start = ABSOLUTE(.);
123124
*(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
124125
*(.iram1 .iram1.*) /* catch stray IRAM_ATTR */
@@ -127,6 +128,7 @@ SECTIONS
127128
*(.gnu.version)
128129
_text_end = ABSOLUTE(.);
129130
_etext = .;
131+
_loader_text_end = .;
130132
} > iram_seg
131133

132134
}
12.8 KB
Binary file not shown.

esp32/bootloader/lib/liblog.a

0 Bytes
Binary file not shown.

esp32/bootloader/lib/libmicro-ecc.a

0 Bytes
Binary file not shown.

esp32/bootloader/lib/libsoc.a

712 Bytes
Binary file not shown.

esp32/bootloader/lib/libspi_flash.a

0 Bytes
Binary file not shown.

esp32/get_idf_libs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33
import argparse
44
import shutil
5-
5+
import traceback
66

77

88
def main():
@@ -62,6 +62,7 @@ def main():
6262
shutil.copy(src + '/openthread/libopenthread.a', dsttmpapp)
6363
except:
6464
print("Couldn't Copy IDF libs defaulting to Local Lib Folders!")
65+
traceback.print_exc()
6566
shutil.rmtree(dsttmpbl)
6667
shutil.rmtree(dsttmpapp)
6768
return

esp32/lib/libbootloader_support.a

9.68 KB
Binary file not shown.

esp32/lib/libbt.a

6.66 KB
Binary file not shown.

esp32/lib/libcxx.a

0 Bytes
Binary file not shown.

esp32/lib/libdriver.a

11.4 KB
Binary file not shown.

esp32/lib/libesp32.a

25.9 KB
Binary file not shown.

esp32/lib/libesp_adc_cal.a

0 Bytes
Binary file not shown.

esp32/lib/libexpat.a

0 Bytes
Binary file not shown.

esp32/lib/libfreertos.a

-772 Bytes
Binary file not shown.

esp32/lib/libheap.a

0 Bytes
Binary file not shown.

esp32/lib/libjsmn.a

0 Bytes
Binary file not shown.

esp32/lib/libjson.a

0 Bytes
Binary file not shown.

esp32/lib/liblog.a

0 Bytes
Binary file not shown.

esp32/lib/liblwip.a

-1.05 KB
Binary file not shown.

esp32/lib/libmbedtls.a

13.6 KB
Binary file not shown.

esp32/lib/libmicro-ecc.a

0 Bytes
Binary file not shown.

esp32/lib/libnewlib.a

0 Bytes
Binary file not shown.

esp32/lib/libnghttp.a

0 Bytes
Binary file not shown.

esp32/lib/libnvs_flash.a

57 KB
Binary file not shown.

esp32/lib/libopenssl.a

0 Bytes
Binary file not shown.

esp32/lib/libopenthread.a

116 Bytes
Binary file not shown.

esp32/lib/libpthread.a

0 Bytes
Binary file not shown.

esp32/lib/libsdmmc.a

0 Bytes
Binary file not shown.

esp32/lib/libsmartconfig_ack.a

0 Bytes
Binary file not shown.

esp32/lib/libsoc.a

712 Bytes
Binary file not shown.

esp32/lib/libspi_flash.a

1012 Bytes
Binary file not shown.

esp32/lib/libtcpip_adapter.a

0 Bytes
Binary file not shown.

esp32/lib/libvfs.a

488 Bytes
Binary file not shown.

esp32/lib/libwpa_supplicant.a

-508 Bytes
Binary file not shown.

esp32/lib/libxtensa-debug-module.a

0 Bytes
Binary file not shown.

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.20.0.rc5"
13+
#define SW_VERSION_NUMBER "1.20.0.rc6"
1414

1515
#define LORAWAN_VERSION_NUMBER "1.0.2"
1616

esp32/sdkconfig.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@
159159
#define CONFIG_MBEDTLS_PEM_PARSE_C 1
160160
#define CONFIG_SPIFFS_GC_MAX_RUNS 10
161161
#define CONFIG_ESP32_APPTRACE_DEST_NONE 1
162+
#define CONFIG_SECURE_BOOTLOADER_KEY_ENCODING_256BIT 1
162163
#define CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 1
163164
#define CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA 1
164165
#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM 32

0 commit comments

Comments
 (0)
0