
Xnp does not work with the new PageEEPROM code in tos/platform/mica/.  To
use the old EEPROM code, do the following:

  revert $TOSDIR/platform/mica/EEPROM.nc to revision 1.1
  revert $TOSDIR/platform/mica/HPLFlash.nc to revision 1.3
  revert $TOSDIR/platform/mica/SoftSPI.nc to revision 1.3
  revert $TOSDIR/platform/mica/eepromM.nc to revision 1.3

Here's some shell script you can cut+paste to use the old versions:

  cd $TOSDIR/platform/mica
  rm -f EEPROM.nc; cvs update -d -r 1.1 EEPROM.nc
  rm -f HPLFlash.nc; cvs update -d -r 1.3 HPLFlash.nc
  rm -f SoftSPI.nc; cvs update -d -r 1.3 SoftSPI.nc
  rm -f eepromM.nc; cvs update -d -r 1.3 eepromM.nc

At some point in the future when it's fixed, you can restore to the new
versions:

  cd $TOSDIR/platform/mica
  rm -f EEPROM.nc; cvs update -d -r HEAD EEPROM.nc
  rm -f HPLFlash.nc; cvs update -d -r HEAD HPLFlash.nc
  rm -f SoftSPI.nc; cvs update -d -r HEAD SoftSPI.nc
  rm -f eepromM.nc; cvs update -d -r HEAD eepromM.nc

