24 lines
573 B
C
24 lines
573 B
C
/*
|
|
* File : drv_spi_flash.c
|
|
* This file is part of RT-Thread RTOS
|
|
* COPYRIGHT (C) 2006-2013, RT-Thread Development Team
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rt-thread.org/license/LICENSE
|
|
*
|
|
* 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_ */
|