123456789101112131415161718192021222324252627282930 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2020-11-07 wanghaijing the first version
- */
- #include <rtthread.h>
- #include <rtdevice.h>
- #include <spi_flash.h>
- #include <drv_spi.h>
- static int rt_flash_init(void)
- {
- extern rt_spi_flash_device_t rt_sfud_flash_probe(const char *spi_flash_dev_name, const char *spi_dev_name);
- extern int fal_init(void);
- rt_hw_spi_device_attach("spi1", "spi10", GPIOA, GPIO_PIN_4);
- /* initialize SPI Flash device */
- rt_sfud_flash_probe("norflash0", "spi10");
- fal_init();
- return 0;
- }
- INIT_ENV_EXPORT(rt_flash_init);
|