Hi Hank,
No, not really....
Code:
Defalt_Config DATA 255
Will store the value 255 at location 0 in EEPROM and give that location the label or name Default_Config. If you want a value to be stored at location 255 you need to useOr possibly (not clear to me how the label thing it works)
Default_Config DATA @255, 42[code]
and then when the user changes that value you do
Code:
userValue VAR BYTE
WRITE 255, userValue
or possibly (still not clear how that "label" works)
Code:
userValue VAR BYTE
WRITE Default_Config, userValue
Sorry if I'm confusing you...
/Henrik.
Bookmarks