rt-thread-official/bsp/swm320/libraries/SWM320_StdPeriph_Driver/SWM320_norflash.h

35 lines
1.1 KiB
C
Raw Normal View History

2021-02-18 13:29:12 +08:00
#ifndef __SWM320_NORFLASH_H__
#define __SWM320_NORFLASH_H__
2021-05-06 10:42:41 +08:00
typedef struct
{
uint8_t DataWidth; // 8、16
2021-02-18 13:29:12 +08:00
2021-05-06 10:42:41 +08:00
uint8_t WELowPulseTime; // WE# pulse width单位为系统时钟周期最大值为7
uint8_t OEPreValidTime; // Valid data output after OE# low单位为系统时钟周期最大值为15
2021-02-18 13:29:12 +08:00
2021-05-06 10:42:41 +08:00
uint8_t OperFinishIEn; // 操作(写入、擦除)完成中断使能
uint8_t OperTimeoutIEn;
} NORFL_InitStructure;
2021-02-18 13:29:12 +08:00
2021-05-06 10:42:41 +08:00
void NORFL_Init(NORFL_InitStructure *initStruct);
2021-02-18 13:29:12 +08:00
uint32_t NORFL_ChipErase(void);
uint32_t NORFL_SectorErase(uint32_t addr);
uint32_t NORFL_Write(uint32_t addr, uint32_t data);
uint32_t NORFL_Read(uint32_t addr);
uint16_t NORFL_ReadID(uint32_t id_addr);
2021-05-06 10:10:29 +08:00
/* 当前版本总线读只支持字读
2021-09-13 20:19:14 +08:00
#define NORFL_Read8(addr) *((volatile uint8_t *)(NORFLM_BASE + addr))
#define NORFL_Read16(addr) *((volatile uint16_t *)(NORFLM_BASE + addr)) */
2021-05-06 10:42:41 +08:00
#define NORFL_Read32(addr) *((volatile uint32_t *)(NORFLM_BASE + addr))
#define NORFL_CMD_READ 0
#define NORFL_CMD_RESET 1
#define NORFL_CMD_AUTO_SELECT 2
#define NORFL_CMD_PROGRAM 3
#define NORFL_CMD_CHIP_ERASE 4
#define NORFL_CMD_SECTOR_ERASE 5
2021-02-18 13:29:12 +08:00
#endif // __SWM320_NORFLASH_H__