File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ ESPCOMP = $(ESPIDF)/components
30
30
ESPTOOL ?= $(ESPCOMP ) /esptool_py/esptool/esptool.py
31
31
32
32
# verify the ESP IDF version
33
- ESPIDF_SUPHASH := f73c6f875cc564fa6c9962be71eac4dbdc56aa63
33
+ ESPIDF_SUPHASH := 1e0710f1b24429a316c9c34732aa17bd3f189421
34
34
ESPIDF_CURHASH := $(shell git -C $(ESPIDF ) show -s --pretty=format:'% H')
35
35
ifneq ($(ESPIDF_CURHASH ) ,$(ESPIDF_SUPHASH ) )
36
36
$(info ** WARNING **)
@@ -249,6 +249,7 @@ ESPIDF_DRIVER_O = $(addprefix $(ESPCOMP)/driver/,\
249
249
gpio.o \
250
250
timer.o \
251
251
spi_master.o \
252
+ spi_common.o \
252
253
rtc_module.o \
253
254
)
254
255
@@ -258,6 +259,7 @@ ESPIDF_ESP32_O = $(addprefix $(ESPCOMP)/esp32/,\
258
259
event_default_handlers.o \
259
260
task_wdt.o \
260
261
cache_err_int.o \
262
+ clk.o \
261
263
core_dump.o \
262
264
cpu_start.o \
263
265
gdbstub.o \
@@ -267,7 +269,6 @@ ESPIDF_ESP32_O = $(addprefix $(ESPCOMP)/esp32/,\
267
269
ipc.o \
268
270
int_wdt.o \
269
271
event_loop.o \
270
- cpu_freq.o \
271
272
hwcrypto/sha.o \
272
273
hwcrypto/aes.o \
273
274
lib_printf.o \
@@ -276,6 +277,7 @@ ESPIDF_ESP32_O = $(addprefix $(ESPCOMP)/esp32/,\
276
277
hw_random.o \
277
278
phy_init.o \
278
279
intr_alloc.o \
280
+ dport_access.o \
279
281
)
280
282
281
283
ESPIDF_SOC_O = $(addprefix $(ESPCOMP ) /soc/,\
@@ -812,6 +814,7 @@ BOOTLOADER_OBJ = $(addprefix $(BUILD)/bootloader/$(ESPCOMP)/,\
812
814
log/log.o \
813
815
spi_flash/spi_flash_rom_patch.o \
814
816
soc/esp32/rtc_clk.o \
817
+ soc/esp32/rtc_time.o \
815
818
micro-ecc/micro-ecc/uECC.o \
816
819
bootloader/src/main/bootloader_start.o \
817
820
)
Original file line number Diff line number Diff line change 6
6
#define CONFIG_BT_DRAM_RELEASE 1
7
7
8
8
#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1
9
+ #define CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS y
10
+ #define CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS 4
11
+
12
+ #define CONFIG_TCPIP_TASK_STACK_SIZE 2560
9
13
10
14
#define CONFIG_ESP32_APPTRACE_DEST_NONE 1
11
15
#define CONFIG_ESP32_PHY_AUTO_INIT 1
26
30
#define CONFIG_ESP32_WIFI_TX_BUFFER_TYPE 1
27
31
#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER 1
28
32
#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM 32
33
+ #define CONFIG_ESP32_XTAL_FREQ_AUTO y
34
+ #define CONFIG_ESP32_XTAL_FREQ 0
35
+ #define CONFIG_ESP32_RTC_CLK_CAL_CYCLES 1024
36
+
29
37
#define CONFIG_FOUR_MAC_ADDRESS_FROM_EFUSE 1
30
38
#define CONFIG_NUMBER_OF_MAC_ADDRESS_GENERATED_FROM_EFUSE 4
31
39
37
45
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK 0
38
46
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 0
39
47
40
- #define CONFIG_FREERTOS_UNICORE 1
41
48
#define CONFIG_FREERTOS_CORETIMER_0 1
42
49
#define CONFIG_FREERTOS_HZ 100
43
50
#define CONFIG_FREERTOS_ASSERT_FAIL_ABORT 1
You can’t perform that action at this time.
0 commit comments