MAX32672 Peripheral Driver API
Peripheral Driver API for the MAX32672
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
Flash Controller (FLC)

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)
 

Detailed Description

Function Documentation

◆ MXC_FLC_BlockPageRead()

int MXC_FLC_BlockPageRead ( uint32_t  address)

Blocks read operations from the flash page associated with the 'address' argument.

Note
Flash pages cannot be unblocked except for on POR and external resets
Parameters
addressAbsolute address located anywhere in the flash page to be locked (does not need to be word-aligned)
Returns
E_NO_ERROR If function is successful.

◆ MXC_FLC_BlockPageWrite()

int MXC_FLC_BlockPageWrite ( uint32_t  address)

Blocks write operations to the flash page associated with the 'address' argument.

Note
Flash pages cannot be unblocked except for on POR and external resets
Parameters
addressAbsolute address located anywhere in the flash page to be locked (does not need to be word-aligned)
Returns
E_NO_ERROR If function is successful.

◆ MXC_FLC_Busy()

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.

Returns
If non-zero, flash operation is in progress

◆ MXC_FLC_ClearFlags()

int MXC_FLC_ClearFlags ( uint32_t  flags)

Clear flash interrupt flags.

Note
Provide the bit position to clear, even if the flag is write-0-to-clear
Parameters
flagsFlag bit(s) to clear
Returns
E_NO_ERROR If function is successful.

◆ MXC_FLC_DisableInt()

int MXC_FLC_DisableInt ( uint32_t  flags)

Disable flash interrupts.

Parameters
flagsInterrupts to disable
Returns
E_NO_ERROR If function is successful.

◆ MXC_FLC_EnableInt()

int MXC_FLC_EnableInt ( uint32_t  flags)

Enable flash interrupts.

Parameters
flagsInterrupts to enable
Returns
E_NO_ERROR If function is successful.

◆ MXC_FLC_GetFlags()

int MXC_FLC_GetFlags ( void  )

Retrieve flash interrupt flags.

Returns
Interrupt flags registers

◆ MXC_FLC_Init()

int MXC_FLC_Init ( void  )

Initializes the Flash Controller for erase/write operations.

Returns
E_NO_ERROR if successful.

◆ MXC_FLC_LockInfoBlock()

int MXC_FLC_LockInfoBlock ( uint32_t  address)

Lock info block.

Parameters
[in]addressThe address in the info block that was written to
Returns
E_NO_ERROR If function is successful.

◆ MXC_FLC_MassErase()

int MXC_FLC_MassErase ( void  )

Erases the entire flash array.

Note
This function must be executed from RAM.
Returns
E_NO_ERROR If function is successful.

◆ MXC_FLC_PageErase()

int MXC_FLC_PageErase ( uint32_t  address)

Erases the page of flash at the specified address.

Note
This function must be executed from RAM.
Parameters
addressAny address within the page to erase.
Returns
E_NO_ERROR If function is successful.

◆ MXC_FLC_Read()

void MXC_FLC_Read ( int  address,
void *  buffer,
int  len 
)

Read Data out of Flash from an address.

Parameters
[in]addressThe address to read from
bufferThe buffer to read the data into
[in]lenThe length of the buffer

◆ MXC_FLC_UnlockInfoBlock()

int MXC_FLC_UnlockInfoBlock ( uint32_t  address)

Unlock info block.

Parameters
[in]addressThe address in the info block needing written to
Returns
E_NO_ERROR If function is successful.

◆ MXC_FLC_Write()

int MXC_FLC_Write ( uint32_t  address,
uint32_t  length,
uint32_t *  buffer 
)

Writes data to flash.

Note
This function must be executed from RAM.
Parameters
addressAddress in flash to start writing from.
lengthNumber of bytes to be written.
bufferPointer to data to be written to flash.
Returns
E_NO_ERROR If function is successful.
Note
make sure to disable ICC with ICC_Disable(); before Running this function

◆ MXC_FLC_Write128()

int MXC_FLC_Write128 ( uint32_t  address,
uint32_t *  data 
)

Writes 128 bits of data to flash.

Note
This function must be executed from RAM.
Parameters
addressAddress in flash to start writing from.
dataPointer to data to be written to flash.
Returns
E_NO_ERROR If function is successful.
Note
make sure to disable ICC with ICC_Disable(); before Running this function

◆ MXC_FLC_Write32()

int MXC_FLC_Write32 ( uint32_t  address,
uint32_t  data 
)

Writes 32 bits of data to flash.

Note
This function must be executed from RAM.
Parameters
addressAddress in flash to start writing from.
dataPointer to data to be written to flash.
Returns
E_NO_ERROR If function is successful.
Note
make sure to disable ICC with ICC_Disable(); before Running this function