CARD_WriteAndVerifyEeprom

Syntax

#include <nitro/card.h>

static inline BOOL CARD_WriteAndVerifyEeprom(u32 dst, const void *src, u32 len);

Arguments

dst Transfer destination EEPROM address.
src Transfer source memory address.
len Byte length of data being written.

Return Values

TRUE if the process succeeds and the data are the same. FALSE otherwise.

Description

This function writes data to an EEPROM device and compares the written data. The function does not return control until it has finished processing. If the process succeeds and the data matches, the function returns TRUE. Otherwise, it returns FALSE. To get the value when processing fails, call the CARD_GetResultCode function. 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.

See Also

CARD_GetResultCode
CARD_IsBackupEeprom
CARD_WriteAndVerifyEepromAsync
CARD_ReadEeprom
CARD_WriteEeprom
CARD_VerifyEeprom

Revision History

2004/12/09 Changed "IO processor" to "ARM7 processor."
2004/08/31 Added a description for the CARD_GetResultCode function.
2004/08/18 Added a description for the PXI interrupt.
2004/07/28 Initial version.


CONFIDENTIAL