Quote Originally Posted by Dave View Post
Paul, I notice that you have only declared 31 WORDS but you are loading the eeprom with 32 BYTES. You can only load individual BYTES into the eeprom even if they are in an array. You would be loading the LOWBYTE of each of the words in the DATA array into the eeprom. Even then, you have only declared 31 words and not 32.

Dave Purola,
N8NTA

Hi Dave,

That is correct, the 1st element in the array, DATA[0], the second element DATA[1], the 32nd DATA[31].

The STR command counts the elements in an array, [ STR DATA\1] would send element DATA[0]. PBPro knows if I am using WORDS or BYTES and counts them appropriately.

In this section of the PBPro manual, it clearly states that WORD variable arrays can be sent.

Paul.