#include "PR/os_internal.h" #include "PRinternal/controller.h" s32 osEepromLongWrite(OSMesgQueue* mq, u8 address, u8* buffer, int length) { s32 ret = 0; while (length > 0) { ERRCK(osEepromWrite(mq, address, buffer)); length -= EEPROM_BLOCK_SIZE; address++; buffer += EEPROM_BLOCK_SIZE; osSetTimer(&__osEepromTimer, OS_USEC_TO_CYCLES(12000), 0, &__osEepromTimerQ, &__osEepromTimerMsg); osRecvMesg(&__osEepromTimerQ, NULL, OS_MESG_BLOCK); } return ret; }