mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04: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);
|
||
|
}
|