17 lines
304 B
C
17 lines
304 B
C
|
/*
|
||
|
* Copyright (c) 2006-2023, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2023-05-28 flyingcys the first version
|
||
|
*/
|
||
|
|
||
|
#ifndef __DRV_SDH_H__
|
||
|
#define __DRV_SDH_H__
|
||
|
|
||
|
int rt_hw_sdh_init(void);
|
||
|
|
||
|
#endif /* __DRV_SDH_H__ */
|