Skip to content

Commit 1b2aed4

Browse files
committed
IDF release/v5.1 5d78511eac
1 parent 1c66395 commit 1b2aed4

File tree

117 files changed

+166
-103
lines changed

Some content is hidden

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

117 files changed

+166
-103
lines changed

esp32/dio_qspi/include/sdkconfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1081,5 +1081,5 @@
10811081
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
10821082
#define CONFIG_WPA_MBEDTLS_CRYPTO CONFIG_ESP_WIFI_MBEDTLS_CRYPTO
10831083
#define CONFIG_WPA_MBEDTLS_TLS_CLIENT CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT
1084-
#define CONFIG_ARDUINO_IDF_COMMIT "25876e8f49"
1084+
#define CONFIG_ARDUINO_IDF_COMMIT "5d78511eac"
10851085
#define CONFIG_ARDUINO_IDF_BRANCH "release/v5.1"

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-554-g25876e8f49\" -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
1+
-DESP_PLATFORM -DIDF_VER=\"v5.1-562-g5d78511eac\" -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/include/hal/esp32/include/hal/spi_ll.h

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
2+
* SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*/
@@ -41,6 +41,7 @@ extern "C" {
4141

4242
#define SPI_LL_DMA_MAX_BIT_LEN (1 << 24) //reg len: 24 bits
4343
#define SPI_LL_CPU_MAX_BIT_LEN (16 * 32) //Fifo len: 16 words
44+
#define SPI_LL_MOSI_FREE_LEVEL 0 //Default level after bus initialized
4445

4546
/**
4647
* The data structure holding calculated clock configuration. Since the
@@ -123,21 +124,21 @@ static inline bool spi_ll_usr_is_done(spi_dev_t *hw)
123124
}
124125

125126
/**
126-
* Trigger start of user-defined transaction for master.
127+
* Apply the register configurations and wait until it's done
127128
*
128129
* @param hw Beginning address of the peripheral registers.
129130
*/
130-
static inline void spi_ll_master_user_start(spi_dev_t *hw)
131+
static inline void spi_ll_apply_config(spi_dev_t *hw)
131132
{
132-
hw->cmd.usr = 1;
133+
// 32 don't need this option
133134
}
134135

135136
/**
136-
* Trigger start of user-defined transaction for slave.
137+
* Trigger start of user-defined transaction.
137138
*
138139
* @param hw Beginning address of the peripheral registers.
139140
*/
140-
static inline void spi_ll_slave_user_start(spi_dev_t *hw)
141+
static inline void spi_ll_user_start(spi_dev_t *hw)
141142
{
142143
hw->cmd.usr = 1;
143144
}

esp32/lib/libcore.a

0 Bytes
Binary file not shown.

esp32/lib/libdriver.a

0 Bytes
Binary file not shown.

esp32/lib/libesp_app_format.a

0 Bytes
Binary file not shown.

esp32/lib/libesp_system.a

0 Bytes
Binary file not shown.

esp32/lib/libespnow.a

0 Bytes
Binary file not shown.

esp32/lib/libhal.a

152 Bytes
Binary file not shown.

esp32/lib/libmesh.a

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)