private void processSetStartupCmd(DataInputStream params, IOTACommandHelper helper)
     throws IOException {
   ConfigPage configPage = spot.getConfigPage();
   configPage.setStartup(params.readUTF(), params.readUTF(), params.readUTF());
   spot.flashConfigPage(configPage);
   helper.sendPrompt();
 }
 private void setPublicKey(byte[] newKey) {
   ConfigPage configPage = spot.getConfigPage();
   configPage.setPublicKey(newKey);
   spot.flashConfigPage(configPage);
 }