mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 06:11:06 +00:00 
			
		
		
		
	Merge branch 'bugfix/sdmmc_high_prio_timeout_v5.4' into 'release/v5.4'
fix(sdmmc): move DMA descriptor refilling into the ISR (v5.4) See merge request espressif/esp-idf!37694
This commit is contained in:
		@@ -1,5 +1,5 @@
 | 
			
		||||
/*
 | 
			
		||||
 * SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD
 | 
			
		||||
 * SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
 | 
			
		||||
 *
 | 
			
		||||
 * SPDX-License-Identifier: Apache-2.0
 | 
			
		||||
 */
 | 
			
		||||
@@ -74,6 +74,12 @@ extern "C" {
 | 
			
		||||
    SDMMC_LL_EVENT_SBE | SDMMC_LL_EVENT_ACD |\
 | 
			
		||||
    SDMMC_LL_EVENT_EBE)
 | 
			
		||||
 | 
			
		||||
// DMA interrupts (idsts register)
 | 
			
		||||
#define SDMMC_LL_EVENT_DMA_TI      SDMMC_IDMAC_INTMASK_TI
 | 
			
		||||
#define SDMMC_LL_EVENT_DMA_RI      SDMMC_IDMAC_INTMASK_RI
 | 
			
		||||
#define SDMMC_LL_EVENT_DMA_NI      SDMMC_IDMAC_INTMASK_NI
 | 
			
		||||
#define SDMMC_LL_EVENT_DMA_MASK    0x1f    //NI and AI will be indicated by TI/RI and FBE/DU respectively
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * SDMMC capabilities
 | 
			
		||||
 */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user