Skip to content

Commit 78f2c6f

Browse files
committed
update IDF libs
1 parent ada57f3 commit 78f2c6f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+15
-11
lines changed

tools/sdk/bin/bootloader.bin

0 Bytes
Binary file not shown.

tools/sdk/include/config/sdkconfig.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
#define CONFIG_ULP_COPROC_ENABLED 1
4343
#define CONFIG_DMA_RX_BUF_NUM 10
4444
#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1
45+
#define CONFIG_TCP_SYNMAXRTX 6
4546
#define CONFIG_PYTHON "python"
4647
#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 1
4748
#define CONFIG_ESPTOOLPY_COMPRESSED 1
@@ -64,6 +65,7 @@
6465
#define CONFIG_ESPTOOLPY_BAUD_OTHER_VAL 115200
6566
#define CONFIG_ENABLE_ARDUINO_DEPENDS 1
6667
#define CONFIG_ESP32_DEFAULT_CPU_FREQ_240 1
68+
#define CONFIG_TCP_MAXRTX 12
6769
#define CONFIG_ESPTOOLPY_AFTER "hard_reset"
6870
#define CONFIG_LWIP_SO_REUSE 1
6971
#define CONFIG_DMA_TX_BUF_NUM 10
@@ -83,6 +85,6 @@
8385
#define CONFIG_LWIP_SO_RCVBUF 1
8486
#define CONFIG_MBEDTLS_HARDWARE_MPI 1
8587
#define CONFIG_MONITOR_BAUD_OTHER_VAL 115200
86-
#define CONFIG_ESPTOOLPY_PORT "/dev/cu.usbserial-0040121AB"
88+
#define CONFIG_ESPTOOLPY_PORT "/dev/cu.usbserial-0030121AB"
8789
#define CONFIG_ESP32_PANIC_PRINT_HALT 1
8890
#define CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_ERROR 1

tools/sdk/include/esp32/esp_system.h

+6-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,12 @@ esp_err_t system_efuse_read_mac(uint8_t mac[6]) __attribute__ ((deprecated));
124124
*/
125125
const char* system_get_sdk_version(void) __attribute__ ((deprecated));
126126

127-
127+
/**
128+
* Get IDF version
129+
*
130+
* @return constant string from IDF_VER
131+
*/
132+
const char* esp_get_idf_version(void);
128133

129134
#ifdef __cplusplus
130135
}

tools/sdk/include/freertos/freertos/FreeRTOSConfig.h

-4
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,6 @@
9090
#define XT_TIMER_INDEX 0
9191
#elif CONFIG_FREERTOS_CORETIMER_1
9292
#define XT_TIMER_INDEX 1
93-
#elif CONFIG_FREERTOS_CORETIMER_2
94-
#define XT_TIMER_INDEX 2
95-
#elif CONFIG_FREERTOS_CORETIMER_3
96-
#define XT_TIMER_INDEX 3
9793
#endif
9894

9995
#define configNUM_THREAD_LOCAL_STORAGE_POINTERS CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS

tools/sdk/include/lwip/lwipopts.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -288,12 +288,12 @@
288288
/**
289289
* TCP_MAXRTX: Maximum number of retransmissions of data segments.
290290
*/
291-
#define TCP_MAXRTX 12 //(*(volatile uint32*)0x600011E8)
291+
#define TCP_MAXRTX CONFIG_TCP_MAXRTX
292292

293293
/**
294294
* TCP_SYNMAXRTX: Maximum number of retransmissions of SYN segments.
295295
*/
296-
#define TCP_SYNMAXRTX 6 //(*(volatile uint32*)0x600011E4)
296+
#define TCP_SYNMAXRTX CONFIG_TCP_SYNMAXRTX
297297

298298
/**
299299
* TCP_LISTEN_BACKLOG: Enable the backlog option for tcp listen pcb.

tools/sdk/include/lwip/port/lwipopts.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -288,12 +288,12 @@
288288
/**
289289
* TCP_MAXRTX: Maximum number of retransmissions of data segments.
290290
*/
291-
#define TCP_MAXRTX 12 //(*(volatile uint32*)0x600011E8)
291+
#define TCP_MAXRTX CONFIG_TCP_MAXRTX
292292

293293
/**
294294
* TCP_SYNMAXRTX: Maximum number of retransmissions of SYN segments.
295295
*/
296-
#define TCP_SYNMAXRTX 6 //(*(volatile uint32*)0x600011E4)
296+
#define TCP_SYNMAXRTX CONFIG_TCP_SYNMAXRTX
297297

298298
/**
299299
* TCP_LISTEN_BACKLOG: Enable the backlog option for tcp listen pcb.

tools/sdk/include/newlib/assert.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ extern "C" {
1111
#undef assert
1212

1313
#ifdef NDEBUG /* required by ANSI standard */
14-
# define assert(__e) ((void)0)
14+
# define assert(__e) ((void) sizeof(__e))
1515
#else
1616
# define assert(__e) ((__e) ? (void)0 : __assert_func (__FILE__, __LINE__, \
1717
__ASSERT_FUNC, #__e))

tools/sdk/ld/esp32.common.ld

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ SECTIONS
8484
*librtc.a:(.literal .text .literal.* .text.*)
8585
*libpp.a:(.literal .text .literal.* .text.*)
8686
*libhal.a:(.literal .text .literal.* .text.*)
87+
*libcoexist.a:(.literal .text .literal.* .text.*)
8788
_iram_text_end = ABSOLUTE(.);
8889
} > iram0_0_seg
8990

tools/sdk/lib/libapp_update.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libbootloader_support.a

124 Bytes
Binary file not shown.

tools/sdk/lib/libbt.a

-236 Bytes
Binary file not shown.

tools/sdk/lib/libbtdm_app.a

940 Bytes
Binary file not shown.

tools/sdk/lib/libcoap.a

20 Bytes
Binary file not shown.

tools/sdk/lib/libcore.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libcxx.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libdriver.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libesp32.a

10.5 KB
Binary file not shown.

tools/sdk/lib/libethernet.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libexpat.a

229 KB
Binary file not shown.

tools/sdk/lib/libfatfs.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libfreertos.a

-416 Bytes
Binary file not shown.

tools/sdk/lib/libjson.a

25.1 KB
Binary file not shown.

tools/sdk/lib/liblog.a

0 Bytes
Binary file not shown.

tools/sdk/lib/liblwip.a

-524 Bytes
Binary file not shown.

tools/sdk/lib/libmbedtls.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libmdns.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libmicro-ecc.a

-3.86 KB
Binary file not shown.

tools/sdk/lib/libnet80211.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libnewlib.a

24 Bytes
Binary file not shown.

tools/sdk/lib/libnghttp.a

260 KB
Binary file not shown.

tools/sdk/lib/libnvs_flash.a

1.38 KB
Binary file not shown.

tools/sdk/lib/libopenssl.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libpp.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libsdmmc.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libspi_flash.a

1.28 KB
Binary file not shown.

tools/sdk/lib/libtcpip_adapter.a

-628 Bytes
Binary file not shown.

tools/sdk/lib/libulp.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libvfs.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libwpa.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libwpa2.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libwpa_supplicant.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libwps.a

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)