tim0s / MicrowireEEPROM

Read and write EEPROMs using the Microwire protocol, such as the ST93C66
23 stars 7 forks source link

Reading 16 adw #3

Open Jimmy062006 opened 6 years ago

Jimmy062006 commented 6 years ago

It does not read 16 ADW

IronDuke123 commented 5 years ago

It will read fine.. but.. For the 93LC46B I set the address bit to 6 and page size to 16.. It worked fine in the demo sketch until the int rolled over into negative.. Simply modify the demo sketch to read an unsigned int.. old = int r = ME.read(addr); new = unsigned int r = ME.read(addr);