Skip to content

Commit a9f4bb1

Browse files
committed
1
1 parent 4706aae commit a9f4bb1

File tree

4 files changed

+31
-8
lines changed

4 files changed

+31
-8
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ source ./tools/install-esp-idf.sh
2121
if [ $? -ne 0 ]; then exit 1; fi
2222

2323
if [ -z $TARGETS ]; then
24-
TARGETS="esp32c3 esp32s2 esp32"
24+
TARGETS="esp32"
2525
fi
2626

2727
echo $(git -C $AR_COMPS/arduino describe --all --long) > version.txt

sdkconfig.esp32

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -153,13 +153,13 @@ CONFIG_DISABLE_HAL_LOCKS=y
153153
#
154154
# Debug Log Configuration
155155
#
156-
CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_NONE=y
157-
# CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_ERROR is not set
156+
# CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_NONE is not set
157+
CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_ERROR=y
158158
# CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_WARN is not set
159159
# CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_INFO is not set
160160
# CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_DEBUG is not set
161161
# CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_VERBOSE is not set
162-
CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL=0
162+
CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL=1
163163
# CONFIG_ARDUHAL_LOG_COLORS is not set
164164
# CONFIG_ARDUHAL_ESP_LOG is not set
165165
# end of Debug Log Configuration
@@ -397,6 +397,13 @@ CONFIG_SPI_SLAVE_ISR_IN_IRAM=y
397397
#
398398
# CONFIG_GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL is not set
399399
# end of GPIO Configuration
400+
401+
#
402+
# GDMA Configuration
403+
#
404+
# CONFIG_GDMA_CTRL_FUNC_IN_IRAM is not set
405+
# CONFIG_GDMA_ISR_IRAM_SAFE is not set
406+
# end of GDMA Configuration
400407
# end of Driver configurations
401408

402409
#
@@ -893,8 +900,12 @@ CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1
893900
CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048
894901
CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10
895902
CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0
896-
# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set
897-
# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set
903+
CONFIG_FREERTOS_USE_TRACE_FACILITY=y
904+
CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS=y
905+
# CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID is not set
906+
CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y
907+
CONFIG_FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER=y
908+
# CONFIG_FREERTOS_RUN_TIME_STATS_USING_CPU_CLK is not set
898909
CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y
899910
# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set
900911
# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set
@@ -1111,7 +1122,6 @@ CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y
11111122
# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set
11121123
CONFIG_MBEDTLS_SSL_MAX_CONTENT_LEN=16384
11131124
# CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN is not set
1114-
# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set
11151125
# CONFIG_MBEDTLS_DEBUG is not set
11161126

11171127
#

sdkconfig.esp32c3

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -564,6 +564,13 @@ CONFIG_SPI_SLAVE_ISR_IN_IRAM=y
564564
#
565565
# CONFIG_UART_ISR_IN_IRAM is not set
566566
# end of UART configuration
567+
568+
#
569+
# GDMA Configuration
570+
#
571+
# CONFIG_GDMA_CTRL_FUNC_IN_IRAM is not set
572+
# CONFIG_GDMA_ISR_IRAM_SAFE is not set
573+
# end of GDMA Configuration
567574
# end of Driver configurations
568575

569576
#

sdkconfig.esp32s2

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,13 @@ CONFIG_ADC_DISABLE_DAC=y
340340
#
341341
# CONFIG_UART_ISR_IN_IRAM is not set
342342
# end of UART configuration
343+
344+
#
345+
# GDMA Configuration
346+
#
347+
# CONFIG_GDMA_CTRL_FUNC_IN_IRAM is not set
348+
# CONFIG_GDMA_ISR_IRAM_SAFE is not set
349+
# end of GDMA Configuration
343350
# end of Driver configurations
344351

345352
#
@@ -1000,7 +1007,6 @@ CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y
10001007
# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set
10011008
CONFIG_MBEDTLS_SSL_MAX_CONTENT_LEN=16384
10021009
# CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN is not set
1003-
# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set
10041010
# CONFIG_MBEDTLS_DEBUG is not set
10051011

10061012
#

0 commit comments

Comments
 (0)