Quote Originally Posted by rsocor01 View Post
Hi. Is this a PBP3 DEFINE? I don't see this in my PBP 2.60 manual. What does it do?
DEFINE WRITE_INT 1 is used to avoid write errors during a WRITE to EEPROM which might otherwise possibly be caused by an interrupt occurring during the write. The functionality is that it disables interrupts just prior to executing a WRITE instruction, and re-enabls interrupts after the WRITE completes. Appears to be strictly a PBP3 feature.