#include <nitro/card.h>
BOOL CARD_ReadFram(u32 src, void *dst, u32 len);
src | Transfer source FRAM address |
dst | Transfer destination memory address |
len | Byte length of data being read |
TRUE if the process succeeds. FALSE otherwise.
Synchronously reads data from the FRAM device. The function does not return control until it has finished processing. It returns TRUE if the process was successful or FALSE if it failed. To get the detailed result value when the process fails, call the CARD_GetResultCode
function. In order to use this function, you must first lock the access bus with the CARD_LockBackup
function.
This function communicates with the ARM7 processor internally via PXI.
The process will not end if PXI interrupts are not enabled.
CARD_GetResultCode CARD_IsBackupFram CARD_ReadFramAsync CARD_WriteFram CARD_VerifyFram CARD_WriteAndVerifyFram
07/05/2005 Initial version.