mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 13:09:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			304 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			304 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
 | |
|  *
 | |
|  * SPDX-License-Identifier: Apache-2.0
 | |
|  */
 | |
| 
 | |
| #include <stdlib.h>
 | |
| #include "hal/sdmmc_hal.h"
 | |
| #include "hal/sdmmc_ll.h"
 | |
| #include "soc/soc_caps.h"
 | |
| 
 | |
| 
 | |
| void sdmmc_hal_init(sdmmc_hal_context_t *hal)
 | |
| {
 | |
|     hal->dev = SDMMC_LL_GET_HW(0);
 | |
| }
 | 
