protected boolean initEmulator(File fileELF) {
try {
mote = new SentillaUSBNode();
registry = mote.getRegistry();
prepareMote(fileELF, mote);
mote.setFlash(new CoojaM25P80(mote.getCPU()));
} catch (Exception e) {
logger.fatal("Error when creating Sentilla USB mote: ", e);
return false;
}
return true;