1 /*
2  * Copyright (C) 2022-2024, Xiaohua Semiconductor Co., Ltd.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2023-03-01     CDT          first version
9  */
10 
11 #ifndef __DRV_NAND_H__
12 #define __DRV_NAND_H__
13 
14 /*******************************************************************************
15  * Include files
16  ******************************************************************************/
17 
18 /* C binding of definitions if building with C++ compiler */
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
23 /*******************************************************************************
24  * Global type definitions ('typedef')
25  ******************************************************************************/
26 
27 /*******************************************************************************
28  * Global pre-processor symbols/macros ('#define')
29  ******************************************************************************/
30 
31 /*******************************************************************************
32  * Global variable definitions ('extern')
33  ******************************************************************************/
34 
35 /*******************************************************************************
36  * Global function prototypes (definition in C source)
37  ******************************************************************************/
38 int rt_hw_nand_init(void);
39 
40 #ifdef __cplusplus
41 }
42 #endif
43 
44 #endif /* __DRV_NAND_H__ */
45