Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 78f2c6f

Browse filesBrowse files
committed
update IDF libs
1 parent ada57f3 commit 78f2c6f
Copy full SHA for 78f2c6f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

43 files changed

+15
-11
lines changed

‎tools/sdk/bin/bootloader.bin

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/include/config/sdkconfig.h

Copy file name to clipboardExpand all lines: tools/sdk/include/config/sdkconfig.h
+3-1Lines changed: 3 additions & 1 deletion
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

Copy file name to clipboardExpand all lines: tools/sdk/include/esp32/esp_system.h
+6-1Lines changed: 6 additions & 1 deletion
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

Copy file name to clipboardExpand all lines: tools/sdk/include/freertos/freertos/FreeRTOSConfig.h
-4Lines changed: 0 additions & 4 deletions
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

Copy file name to clipboardExpand all lines: tools/sdk/include/lwip/lwipopts.h
+2-2Lines changed: 2 additions & 2 deletions
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

Copy file name to clipboardExpand all lines: tools/sdk/include/lwip/port/lwipopts.h
+2-2Lines changed: 2 additions & 2 deletions
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

Copy file name to clipboardExpand all lines: tools/sdk/include/newlib/assert.h
+1-1Lines changed: 1 addition & 1 deletion
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

Copy file name to clipboardExpand all lines: tools/sdk/ld/esp32.common.ld
+1Lines changed: 1 addition & 0 deletions
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

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libbootloader_support.a

Copy file name to clipboard
124 Bytes
Binary file not shown.

‎tools/sdk/lib/libbt.a

Copy file name to clipboard
-236 Bytes
Binary file not shown.

‎tools/sdk/lib/libbtdm_app.a

Copy file name to clipboard
940 Bytes
Binary file not shown.

‎tools/sdk/lib/libcoap.a

Copy file name to clipboard
20 Bytes
Binary file not shown.

‎tools/sdk/lib/libcore.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libcxx.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libdriver.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libesp32.a

Copy file name to clipboard
10.5 KB
Binary file not shown.

‎tools/sdk/lib/libethernet.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libexpat.a

Copy file name to clipboard
229 KB
Binary file not shown.

‎tools/sdk/lib/libfatfs.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libfreertos.a

Copy file name to clipboard
-416 Bytes
Binary file not shown.

‎tools/sdk/lib/libjson.a

Copy file name to clipboard
25.1 KB
Binary file not shown.

‎tools/sdk/lib/liblog.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/liblwip.a

Copy file name to clipboard
-524 Bytes
Binary file not shown.

‎tools/sdk/lib/libmbedtls.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libmdns.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libmicro-ecc.a

Copy file name to clipboard
-3.86 KB
Binary file not shown.

‎tools/sdk/lib/libnet80211.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libnewlib.a

Copy file name to clipboard
24 Bytes
Binary file not shown.

‎tools/sdk/lib/libnghttp.a

Copy file name to clipboard
260 KB
Binary file not shown.

‎tools/sdk/lib/libnvs_flash.a

Copy file name to clipboard
1.38 KB
Binary file not shown.

‎tools/sdk/lib/libopenssl.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libpp.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libsdmmc.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libspi_flash.a

Copy file name to clipboard
1.28 KB
Binary file not shown.

‎tools/sdk/lib/libtcpip_adapter.a

Copy file name to clipboard
-628 Bytes
Binary file not shown.

‎tools/sdk/lib/libulp.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libvfs.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libwpa.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libwpa2.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libwpa_supplicant.a

Copy file name to clipboard
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libwps.a

Copy file name to clipboard
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.