File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ ESPTOOL ?= $(ESPIDF)/components/esptool_py/esptool/esptool.py
29
29
30
30
INC += -I.
31
31
INC += -I..
32
- INC += -I../stmhal
33
32
INC += -I../lib/mp-readline
34
33
INC += -I../lib/netutils
35
34
INC += -I../lib/timeutils
36
35
INC += -I$(BUILD )
37
36
INC += -I$(ESPIDF ) /components/driver/include
37
+ INC += -I$(ESPIDF ) /components/driver/include/driver
38
38
INC += -I$(ESPIDF ) /components/nghttp/port/include
39
39
INC += -I$(ESPIDF ) /components/nghttp/include
40
40
INC += -I$(ESPIDF ) /components/esp32/include
@@ -180,6 +180,7 @@ ESPIDF_DRIVER_O = $(addprefix $(ESPIDF)/components/driver/,\
180
180
ledc.o \
181
181
gpio.o \
182
182
timer.o \
183
+ rtc_module.o \
183
184
)
184
185
185
186
$(BUILD ) /$(ESPIDF ) /components/esp32/% .o : CFLAGS = -std=gnu99 -Os -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -mlongcalls -nostdlib -Wall -Werror -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -DMBEDTLS_CONFIG_FILE='"mbedtls/esp_config.h"' -DHAVE_CONFIG_H -DESP_PLATFORM $(INC )
@@ -510,7 +511,7 @@ all: $(BUILD)/bootloader.bin $(BUILD)/partitions.bin $(BUILD)/firmware.bin
510
511
.PHONY : idf-version deploy
511
512
512
513
idf-version :
513
- $(ECHO ) " IDF version: c8685c200276abda4418f1367743f650d2aeacb2 "
514
+ $(ECHO ) " IDF version: f807d16310719b0dcef07de0276934653b6e48ed "
514
515
515
516
deploy : $(BUILD ) /bootloader.bin $(BUILD ) /partitions.bin $(BUILD ) /firmware.bin
516
517
$(ECHO ) " Writing $^ to the board"
Original file line number Diff line number Diff line change
1
+ // this is needed for extmod/crypto-algorithms/sha256.c
2
+ #include <string.h>
Original file line number Diff line number Diff line change 19
19
#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1
20
20
#define CONFIG_BT_RESERVE_DRAM 0x0
21
21
#define CONFIG_ESP32_PANIC_PRINT_REBOOT 1
22
+ #define CONFIG_CONSOLE_UART_BAUDRATE 115200
22
23
#define CONFIG_LWIP_MAX_SOCKETS 4
23
24
#define CONFIG_ULP_COPROC_RESERVE_MEM 0
24
25
#define CONFIG_ESPTOOLPY_BAUD 115200
25
26
#define CONFIG_INT_WDT_CHECK_CPU1 1
26
27
#define CONFIG_TOOLPREFIX "xtensa-esp32-elf-"
28
+ #define CONFIG_CONSOLE_UART_NUM 0
27
29
#define CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC 1
28
30
#define CONFIG_ESPTOOLPY_BAUD_115200B 1
29
31
#define CONFIG_LWIP_THREAD_LOCAL_STORAGE_INDEX 0
32
+ #define CONFIG_CONSOLE_UART_DEFAULT 1
30
33
#define CONFIG_MBEDTLS_SSL_MAX_CONTENT_LEN 16384
31
34
#define CONFIG_ESP32_ENABLE_STACK_WIFI 1
32
35
#define CONFIG_MBEDTLS_MPI_USE_INTERRUPT 1
You can’t perform that action at this time.
0 commit comments