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 @@ -29,7 +29,7 @@ ESPCOMP = $(ESPIDF)/components
29
29
ESPTOOL ?= $(ESPCOMP ) /esptool_py/esptool/esptool.py
30
30
31
31
# verify the ESP IDF version
32
- ESPIDF_SUPHASH := f73c6f875cc564fa6c9962be71eac4dbdc56aa63
32
+ ESPIDF_SUPHASH := 1e0710f1b24429a316c9c34732aa17bd3f189421
33
33
ESPIDF_CURHASH := $(shell git -C $(ESPIDF ) show -s --pretty=format:'% H')
34
34
ifneq ($(ESPIDF_CURHASH ) ,$(ESPIDF_SUPHASH ) )
35
35
$(info ** WARNING **)
@@ -204,6 +204,7 @@ ESPIDF_DRIVER_O = $(addprefix $(ESPCOMP)/driver/,\
204
204
gpio.o \
205
205
timer.o \
206
206
spi_master.o \
207
+ spi_common.o \
207
208
rtc_module.o \
208
209
)
209
210
@@ -213,6 +214,7 @@ ESPIDF_ESP32_O = $(addprefix $(ESPCOMP)/esp32/,\
213
214
event_default_handlers.o \
214
215
task_wdt.o \
215
216
cache_err_int.o \
217
+ clk.o \
216
218
core_dump.o \
217
219
cpu_start.o \
218
220
gdbstub.o \
@@ -222,7 +224,6 @@ ESPIDF_ESP32_O = $(addprefix $(ESPCOMP)/esp32/,\
222
224
ipc.o \
223
225
int_wdt.o \
224
226
event_loop.o \
225
- cpu_freq.o \
226
227
hwcrypto/sha.o \
227
228
hwcrypto/aes.o \
228
229
lib_printf.o \
@@ -231,6 +232,7 @@ ESPIDF_ESP32_O = $(addprefix $(ESPCOMP)/esp32/,\
231
232
hw_random.o \
232
233
phy_init.o \
233
234
intr_alloc.o \
235
+ dport_access.o \
234
236
)
235
237
236
238
ESPIDF_SOC_O = $(addprefix $(ESPCOMP ) /soc/,\
@@ -633,6 +635,7 @@ BOOTLOADER_OBJ = $(addprefix $(BUILD)/bootloader/$(ESPCOMP)/,\
633
635
log/log.o \
634
636
spi_flash/spi_flash_rom_patch.o \
635
637
soc/esp32/rtc_clk.o \
638
+ soc/esp32/rtc_time.o \
636
639
micro-ecc/micro-ecc/uECC.o \
637
640
bootloader/src/main/bootloader_start.o \
638
641
)
Original file line number Diff line number Diff line change 5
5
#define CONFIG_APP_OFFSET 0x10000
6
6
7
7
#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1
8
+ #define CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS y
9
+ #define CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS 4
10
+
11
+ #define CONFIG_TCPIP_TASK_STACK_SIZE 2560
8
12
9
13
#define CONFIG_ESP32_APPTRACE_DEST_NONE 1
10
14
#define CONFIG_ESP32_PHY_AUTO_INIT 1
25
29
#define CONFIG_ESP32_WIFI_TX_BUFFER_TYPE 1
26
30
#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER 1
27
31
#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM 32
32
+ #define CONFIG_ESP32_XTAL_FREQ_AUTO y
33
+ #define CONFIG_ESP32_XTAL_FREQ 0
34
+ #define CONFIG_ESP32_RTC_CLK_CAL_CYCLES 1024
35
+
28
36
#define CONFIG_FOUR_MAC_ADDRESS_FROM_EFUSE 1
29
37
#define CONFIG_NUMBER_OF_MAC_ADDRESS_GENERATED_FROM_EFUSE 4
30
38
36
44
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK 0
37
45
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 0
38
46
39
- #define CONFIG_FREERTOS_UNICORE 1
40
47
#define CONFIG_FREERTOS_CORETIMER_0 1
41
48
#define CONFIG_FREERTOS_HZ 100
42
49
#define CONFIG_FREERTOS_ASSERT_FAIL_ABORT 1
You can’t perform that action at this time.
0 commit comments