123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /*
- * Copyright (c) 2006-2018, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2019-3-30 bluebear233 first version
- */
- #include <rtdevice.h>
- #ifdef RT_USING_SPI
- #if defined(RT_USING_W25QXX) || defined(RT_USING_SFUD)
- static struct rt_spi_device spi_device;
- #ifdef RT_USING_W25QXX
- #include "spi_flash_w25qxx.h"
- #elif defined(RT_USING_SFUD)
- #include "spi_flash.h"
- #include "spi_flash_sfud.h"
- #endif
- static int rt_hw_spi_flash_init(void)
- {
- rt_spi_bus_attach_device(&spi_device, "qspi01", "qspi0", RT_NULL);
- #ifdef RT_USING_W25QXX
- return w25qxx_init("flash0", "qspi01");
- #elif defined(RT_USING_SFUD)
- if (rt_sfud_flash_probe("flash0", "qspi01") == RT_NULL)
- {
- return -RT_ERROR;
- }
- #endif
- return 0;
- }
- INIT_COMPONENT_EXPORT(rt_hw_spi_flash_init);
- #endif
- #endif
|