1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef __FLASH_STM32_H
- #define __FLASH_STM32_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "ch.h"
- #include "hal.h"
- typedef enum
- {
- FLASH_BUSY = 1,
- FLASH_ERROR_PG,
- FLASH_ERROR_WRP,
- FLASH_ERROR_OPT,
- FLASH_COMPLETE,
- FLASH_TIMEOUT,
- FLASH_BAD_ADDRESS
- } FLASH_Status;
- #define IS_FLASH_ADDRESS(ADDRESS) (((ADDRESS) >= 0x08000000) && ((ADDRESS) < 0x0807FFFF))
- FLASH_Status FLASH_WaitForLastOperation(uint32_t Timeout);
- FLASH_Status FLASH_ErasePage(uint32_t Page_Address);
- FLASH_Status FLASH_ProgramHalfWord(uint32_t Address, uint16_t Data);
- void FLASH_Unlock(void);
- void FLASH_Lock(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|