12 lines
152 B
C
12 lines
152 B
C
|
#include "type.h"
|
||
|
#ifndef SPI_FLASH_H_
|
||
|
#define SPI_FLASH_H_
|
||
|
|
||
|
|
||
|
#define FLASH_CMD_READ_ID 0x90
|
||
|
|
||
|
|
||
|
void Flash_Read_ID();
|
||
|
void SPI_FlashInit(void);
|
||
|
#endif
|