| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- * Copyright (C) 2022-2024, Xiaohua Semiconductor Co., Ltd.
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2023-03-01 CDT first version
- */
- #ifndef __DRV_NAND_H__
- #define __DRV_NAND_H__
- /*******************************************************************************
- * Include files
- ******************************************************************************/
- /* C binding of definitions if building with C++ compiler */
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*******************************************************************************
- * Global type definitions ('typedef')
- ******************************************************************************/
- /*******************************************************************************
- * Global pre-processor symbols/macros ('#define')
- ******************************************************************************/
- /*******************************************************************************
- * Global variable definitions ('extern')
- ******************************************************************************/
- /*******************************************************************************
- * Global function prototypes (definition in C source)
- ******************************************************************************/
- int rt_hw_nand_init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* __DRV_NAND_H__ */
|