1 /* 2 * Copyright (c) 2006-2018, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2015-10-11 fullhan copy from winbond flash 9 */ 10 11 #ifndef SPI_FLASH_GD_H_ 12 #define SPI_FLASH_GD_H_ 13 14 #include <rtthread.h> 15 16 extern rt_err_t gd_init(const char * flash_device_name, const char * spi_device_name); 17 18 #endif /* SPI_FLASH_GD_H_ */ 19