I am getting closer to the testing stage of my project but have one question. In the PBP manual it says that if interrupts are used the following define should be used.

DEFINE WRITE_INT 1

further in the code I have a sequence of writes, four in a row like below,

write Degrees_up, word vdegrees_up
write Degrees_10, word vdegrees_10
write Degrees_20, word vdegrees_20
write Degrees_30, word vdegrees_30
.
.
rest of code

If I am reading the manual correctly, the define statement will mask and unmask the interrupts while the write is occurring. Is this correct?

Thanks for any clarification you can provide.

Zapman