16 lines
238 B
C
16 lines
238 B
C
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __DRV_SDCARD_H__
|
|
#define __DRV_SDCARD_H__
|
|
|
|
#include <rtthread.h>
|
|
#include <rtdevice.h>
|
|
|
|
int rt_hw_sdcard_init(void);
|
|
|
|
#endif
|