12345678910111213141516171819 |
- #ifndef W25Q32_H
- #define W25Q32_H
- #include "stdint.h"
- #define CS_ENABLE gpio_bit_reset(GPIOA,GPIO_PIN_4)
- #define CS_DISENABLE gpio_bit_set(GPIOA,GPIO_PIN_4)
- void W25Q32_Init(void);
- void W25Q32_WaitBusy(void);
- void W25Q32_Enable(void);
- void W25Q32_Erase64K(uint8_t blockNB);
- void W25Q32_PageWrite(uint8_t *wbuff, uint16_t pageNB);
- void W25Q32_Read(uint8_t *rbuff, uint32_t addr, uint32_t datalen);
- #endif
|