![]() |
MAX32672 Peripheral Driver API
Peripheral Driver API for the MAX32672
|
Modules | |
FLC_Registers | |
Macros | |
#define | MXC_FLASH_PAGE_MASK ~(MXC_FLASH_PAGE_SIZE - 1) |
#define | MXC_FLASH_PAGE_ADDR(page) (MXC_FLASH_MEM_BASE + ((uint32_t)page * MXC_FLASH_PAGE_SIZE)) |
Functions | |
int | MXC_FLC_Init (void) |
int | MXC_FLC_Busy (void) |
int | MXC_FLC_MassErase (void) |
int | MXC_FLC_PageErase (uint32_t address) |
void | MXC_FLC_Read (int address, void *buffer, int len) |
int | MXC_FLC_Write (uint32_t address, uint32_t length, uint32_t *buffer) |
int | MXC_FLC_Write32 (uint32_t address, uint32_t data) |
int | MXC_FLC_Write128 (uint32_t address, uint32_t *data) |
int | MXC_FLC_EnableInt (uint32_t flags) |
int | MXC_FLC_DisableInt (uint32_t flags) |
int | MXC_FLC_GetFlags (void) |
int | MXC_FLC_ClearFlags (uint32_t flags) |
int | MXC_FLC_UnlockInfoBlock (uint32_t address) |
int | MXC_FLC_LockInfoBlock (uint32_t address) |
int | MXC_FLC_BlockPageWrite (uint32_t address) |
int | MXC_FLC_BlockPageRead (uint32_t address) |
int MXC_FLC_BlockPageRead | ( | uint32_t | address | ) |
Blocks read operations from the flash page associated with the 'address' argument.
address | Absolute address located anywhere in the flash page to be locked (does not need to be word-aligned) |
int MXC_FLC_BlockPageWrite | ( | uint32_t | address | ) |
Blocks write operations to the flash page associated with the 'address' argument.
address | Absolute address located anywhere in the flash page to be locked (does not need to be word-aligned) |
int MXC_FLC_Busy | ( | void | ) |
Checks if Flash Controller is busy.
Reading or executing from flash is not possible if flash is busy with an erase or write operation.
int MXC_FLC_ClearFlags | ( | uint32_t | flags | ) |
Clear flash interrupt flags.
flags | Flag bit(s) to clear |
int MXC_FLC_DisableInt | ( | uint32_t | flags | ) |
Disable flash interrupts.
flags | Interrupts to disable |
int MXC_FLC_EnableInt | ( | uint32_t | flags | ) |
Enable flash interrupts.
flags | Interrupts to enable |
int MXC_FLC_GetFlags | ( | void | ) |
Retrieve flash interrupt flags.
int MXC_FLC_Init | ( | void | ) |
Initializes the Flash Controller for erase/write operations.
int MXC_FLC_LockInfoBlock | ( | uint32_t | address | ) |
Lock info block.
[in] | address | The address in the info block that was written to |
int MXC_FLC_MassErase | ( | void | ) |
Erases the entire flash array.
int MXC_FLC_PageErase | ( | uint32_t | address | ) |
Erases the page of flash at the specified address.
address | Any address within the page to erase. |
void MXC_FLC_Read | ( | int | address, |
void * | buffer, | ||
int | len | ||
) |
Read Data out of Flash from an address.
[in] | address | The address to read from |
buffer | The buffer to read the data into | |
[in] | len | The length of the buffer |
int MXC_FLC_UnlockInfoBlock | ( | uint32_t | address | ) |
Unlock info block.
[in] | address | The address in the info block needing written to |
int MXC_FLC_Write | ( | uint32_t | address, |
uint32_t | length, | ||
uint32_t * | buffer | ||
) |
Writes data to flash.
address | Address in flash to start writing from. |
length | Number of bytes to be written. |
buffer | Pointer to data to be written to flash. |
int MXC_FLC_Write128 | ( | uint32_t | address, |
uint32_t * | data | ||
) |
Writes 128 bits of data to flash.
address | Address in flash to start writing from. |
data | Pointer to data to be written to flash. |
int MXC_FLC_Write32 | ( | uint32_t | address, |
uint32_t | data | ||
) |
Writes 32 bits of data to flash.
address | Address in flash to start writing from. |
data | Pointer to data to be written to flash. |