1 /**************************************************************************//**
2 *
3 * @copyright (C) 2020 Nuvoton Technology Corp. All rights reserved.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Change Logs:
8 * Date            Author           Notes
9 * 2020-2-7        Wayne            First version
10 *
11 ******************************************************************************/
12 
13 #ifndef __DRV_QSPI_H__
14 #define __DRV_QSPI_H__
15 
16 #include <rtdevice.h>
17 
18 rt_err_t nu_qspi_bus_attach_device(const char *bus_name, const char *device_name, rt_uint8_t data_line_width, void (*enter_qspi_mode)(), void (*exit_qspi_mode)());
19 
20 #endif // __DRV_QSPI_H___
21