drv_qspi.h 1.2 KB
Newer Older
S
sheltonyu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * Copyright (c) 2006-2021, RT-Thread Development Team
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author       Notes
 * 2022-03-29     shelton      first version
 */

#ifndef __DRV_QSPI_H__
#define __DRV_QSPI_H__

#include <rtthread.h>

#ifdef __cplusplus
extern "C" {
#endif

#ifdef BSP_USING_QSPI
#ifndef QSPI1_BUS_CONFIG
#define QSPI1_BUS_CONFIG                                       \
    {                                                          \
        .qspi_x                 = QSPI1,                       \
        .bus_name               = "qspi1",                     \
    }
#endif /* QSPI1_BUS_CONFIG */

#ifndef QSPI2_BUS_CONFIG
#define QSPI2_BUS_CONFIG                                       \
    {                                                          \
        .qspi_x                 = QSPI2,                       \
        .bus_name               = "qspi2",                     \
    }
#endif /* QSPI2_BUS_CONFIG */
#endif /* BSP_USING_QSPI */

rt_err_t at32_qspi_bus_attach_device(const char *bus_name, const char *device_name, rt_uint32_t pin, rt_uint8_t data_line_width,  void (*enter_qspi_mode)(),  void (*exit_qspi_mode)());

#ifdef __cplusplus
}
#endif

#endif /* __DRV_QSPI_H__ */