diff --git a/firmware/integration/rusefi.xml b/firmware/integration/rusefi.xml index 78f273f865..0f03cd02c5 100644 --- a/firmware/integration/rusefi.xml +++ b/firmware/integration/rusefi.xml @@ -3,7 +3,7 @@ RUSEFI 0 - RUSEFI + RUSEFI0.1 RUSEFI 00 US @@ -13,21 +13,21 @@ MT SH7055 sti04 - 1kb + 14008 - - -
- +
+ +
+
- - +
+
- - -
- +
+ +
+
diff --git a/java_console/romraider/src/com/romraider/xml/RomAttributeParser.java b/java_console/romraider/src/com/romraider/xml/RomAttributeParser.java index b914ebd60a..e3b3a1df46 100644 --- a/java_console/romraider/src/com/romraider/xml/RomAttributeParser.java +++ b/java_console/romraider/src/com/romraider/xml/RomAttributeParser.java @@ -196,6 +196,8 @@ public final class RomAttributeParser { ByteBuffer bb = ByteBuffer.wrap(input, 0, 4); if (endian == Settings.ENDIAN_LITTLE) { bb.order(ByteOrder.BIG_ENDIAN); + } else { + bb.order(ByteOrder.LITTLE_ENDIAN); } return bb.getFloat(); }