Skip to content

Commit c34d4b6

Browse files
committed
IDF release/v5.1 3fd0eff833
1 parent 18d361e commit c34d4b6

File tree

605 files changed

+8310
-1971
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

605 files changed

+8310
-1971
lines changed

esp32/bin/bootloader_dio_40m.elf

0 Bytes
Binary file not shown.

esp32/bin/bootloader_dio_80m.elf

0 Bytes
Binary file not shown.

esp32/bin/bootloader_qio_40m.elf

0 Bytes
Binary file not shown.

esp32/bin/bootloader_qio_80m.elf

0 Bytes
Binary file not shown.

esp32/dio_qspi/include/sdkconfig.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 9
6161
#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12
6262
#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1
63+
#define CONFIG_SOC_IDCACHE_PER_CORE 1
6364
#define CONFIG_SOC_CPU_CORES_NUM 2
6465
#define CONFIG_SOC_CPU_INTR_NUM 32
6566
#define CONFIG_SOC_CPU_HAS_FPU 1
@@ -1083,5 +1084,5 @@
10831084
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
10841085
#define CONFIG_WPA_MBEDTLS_CRYPTO CONFIG_ESP_WIFI_MBEDTLS_CRYPTO
10851086
#define CONFIG_WPA_MBEDTLS_TLS_CLIENT CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT
1086-
#define CONFIG_ARDUINO_IDF_COMMIT "79b1379662"
1087+
#define CONFIG_ARDUINO_IDF_COMMIT "3fd0eff833"
10871088
#define CONFIG_ARDUINO_IDF_BRANCH "release/v5.1"

esp32/dio_qspi/libspi_flash.a

-232 Bytes
Binary file not shown.

esp32/flags/defines

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-DESP_PLATFORM -DIDF_VER=\"v5.1-480-g79b1379662\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -DTF_LITE_STATIC_MEMORY
1+
-DESP_PLATFORM -DIDF_VER=\"v5.1-552-g3fd0eff833\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -DTF_LITE_STATIC_MEMORY

esp32/flags/includes

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

esp32/include/esp-dl/include/tool/dl_tool.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,9 @@ namespace dl
393393
void print()
394394
{
395395
#if DL_LOG_LATENCY_UNIT
396-
printf("latency: %15u cycle\n", this->get_average_period());
396+
printf("latency: %15lu cycle\n", this->get_average_period());
397397
#else
398-
printf("latency: %15u us\n", this->get_average_period());
398+
printf("latency: %15lu us\n", this->get_average_period());
399399
#endif
400400
}
401401

@@ -407,9 +407,9 @@ namespace dl
407407
void print(const char *message)
408408
{
409409
#if DL_LOG_LATENCY_UNIT
410-
printf("%s: %15u cycle\n", message, this->get_average_period());
410+
printf("%s: %15lu cycle\n", message, this->get_average_period());
411411
#else
412-
printf("%s: %15u us\n", message, this->get_average_period());
412+
printf("%s: %15lu us\n", message, this->get_average_period());
413413
#endif
414414
}
415415

@@ -422,9 +422,9 @@ namespace dl
422422
void print(const char *prefix, const char *key)
423423
{
424424
#if DL_LOG_LATENCY_UNIT
425-
printf("%s::%s: %u cycle\n", prefix, key, this->get_average_period());
425+
printf("%s::%s: %lu cycle\n", prefix, key, this->get_average_period());
426426
#else
427-
printf("%s::%s: %u us\n", prefix, key, this->get_average_period());
427+
printf("%s::%s: %lu us\n", prefix, key, this->get_average_period());
428428
#endif
429429
}
430430
};
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#ifndef ESP_KERNEL_H
2+
#define ESP_KERNEL_H
3+
#include <stdint.h>
4+
#include <stdio.h>
5+
#include <assert.h>
6+
7+
#ifdef __cplusplus
8+
extern "C" {
9+
#endif
10+
11+
void esp_dl_nn_conv2d_s8_wrapper(int8_t* input, int8_t* kernel, int8_t* bias, int input_shape[], int kernel_shape[], int output_shape[], int padding[], int dilation[], int strides[], int input_exponent, int kernel_exponent, int output_exponent, char activation_sym[], int8_t* output);
12+
void esp_dl_nn_depthwise_conv2d_s8_wrapper(int8_t* input, int8_t* kernel, int8_t* bias, int input_shape[], int kernel_shape[], int output_shape[], int padding[], int dilation[], int strides[], int input_exponent, int kernel_exponent, int output_exponent, char activation_sym[], int8_t* output);
13+
14+
#ifdef __cplusplus
15+
}
16+
#endif
17+
18+
#endif // ESP_KERNEL_H
19+

0 commit comments

Comments
 (0)