diff --git a/config/hyperion.config.json b/config/hyperion.config.json index bba5ce09..5f569a43 100644 --- a/config/hyperion.config.json +++ b/config/hyperion.config.json @@ -339,7 +339,7 @@ }, /// The boot-sequence configuration, contains the following items: - /// * type : The type of the boot-sequence ('rainbow', 'knight_rider', 'none') + /// * type : The type of the boot-sequence ('rainbow', 'knightrider', 'none') /// * duration_ms : The length of the boot-sequence [ms] "bootsequence" : { diff --git a/deploy/HyperCon.jar.REMOVED.git-id b/deploy/HyperCon.jar.REMOVED.git-id index 66954acf..ece2c44a 100644 --- a/deploy/HyperCon.jar.REMOVED.git-id +++ b/deploy/HyperCon.jar.REMOVED.git-id @@ -1 +1 @@ -97f01ae47416100223417becca5c3a50a773fbfa \ No newline at end of file +944c2292ca55b16a31bdf1d89e0e7849d6879995 \ No newline at end of file diff --git a/src/config-tool/ConfigTool/src/org/hyperion/hypercon/spec/BootSequence.java b/src/config-tool/ConfigTool/src/org/hyperion/hypercon/spec/BootSequence.java index 7109dee3..0b7d9921 100644 --- a/src/config-tool/ConfigTool/src/org/hyperion/hypercon/spec/BootSequence.java +++ b/src/config-tool/ConfigTool/src/org/hyperion/hypercon/spec/BootSequence.java @@ -20,7 +20,7 @@ public enum BootSequence { case rainbow: return "Rainbow"; case knightrider: - return "Kinght Rider"; + return "Knight Rider"; } return "None"; } diff --git a/src/config-tool/ConfigTool/src/org/hyperion/hypercon/spec/MiscConfig.java b/src/config-tool/ConfigTool/src/org/hyperion/hypercon/spec/MiscConfig.java index 118cd8a3..cadfd7d6 100644 --- a/src/config-tool/ConfigTool/src/org/hyperion/hypercon/spec/MiscConfig.java +++ b/src/config-tool/ConfigTool/src/org/hyperion/hypercon/spec/MiscConfig.java @@ -68,7 +68,7 @@ public class MiscConfig { String bootPreamble = mBootsequenceEnabled? "\t" : "//\t"; strBuf.append(bootPreamble).append("\"bootsequence\" :\n"); strBuf.append(bootPreamble).append("{\n"); - strBuf.append(bootPreamble).append(String.format(Locale.ROOT, "\t\"type\" : \"%s\",\n", mBootSequence)); + strBuf.append(bootPreamble).append(String.format(Locale.ROOT, "\t\"type\" : \"%s\",\n", mBootSequence.name())); strBuf.append(bootPreamble).append(String.format(Locale.ROOT, "\t\"duration_ms\" : %d\n", mBootSequenceLength_ms)); strBuf.append(bootPreamble).append("},\n\n");