drv_nand.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. #ifndef __DRV_NAND_H__
  11. #define __DRV_NAND_H__
  12. /*******************************************************************************
  13. * Include files
  14. ******************************************************************************/
  15. /* C binding of definitions if building with C++ compiler */
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /*******************************************************************************
  20. * Global type definitions ('typedef')
  21. ******************************************************************************/
  22. /*******************************************************************************
  23. * Global pre-processor symbols/macros ('#define')
  24. ******************************************************************************/
  25. /*******************************************************************************
  26. * Global variable definitions ('extern')
  27. ******************************************************************************/
  28. /*******************************************************************************
  29. * Global function prototypes (definition in C source)
  30. ******************************************************************************/
  31. int rt_hw_nand_init(void);
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif /* __DRV_NAND_H__ */