20 lines
383 B
C
20 lines
383 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2018-04-02 Liuguang the first version.
|
|
*/
|
|
|
|
#ifndef __DRV_SPI_FLASH_H_
|
|
#define __DRV_SPI_FLASH_H_
|
|
|
|
#include <rtthread.h>
|
|
#include <rtdevice.h>
|
|
|
|
int rt_hw_spi_flash_init(void);
|
|
|
|
#endif /* __DRV_SPI_FLASH_H_ */
|