Frans Bergman 8 rokov pred
rodič
commit
fac7dd1398

+ 2 - 2
src/main/java/eu/tankernn/assembly/compiler/Assemble.java

@@ -102,12 +102,12 @@ public class Assemble {
 	public static void output(Byte[] bytes) throws IOException {
 		if (outputToGPIO)
 			GPIOHandler.writeData(bytes);
-		
+
 		for (Byte b : bytes) {
 			out.println(
 					byteToBinaryString(currentAddress, 4, bigEndianAddress) + " : " + byteToBinaryString(b, 8, false));
 			currentAddress++;
-		}	
+		}
 	}
 
 	public static String byteToBinaryString(int b, int wordLength, boolean reverse) {

+ 1 - 1
src/main/java/eu/tankernn/assembly/compiler/LineParser.java

@@ -116,7 +116,7 @@ public class LineParser {
 
 	private byte reverseByte(byte x, int wordSize) {
 		System.out.print("Original: " + Assemble.byteToBinaryString(x, wordSize, false));
-		byte y = (byte) (((x & 0xff) >>> 0)<<24);
+		byte y = (byte) (((x & 0xff) >>> 0) << 24);
 		System.out.println(", Reversed: " + Assemble.byteToBinaryString(y, wordSize, false));
 		return y;
 	}

+ 2 - 2
src/main/java/eu/tankernn/assembly/output/GPIOHandler.java

@@ -45,7 +45,7 @@ public class GPIOHandler {
 
 			// Pulse write pin
 			writePin.pulse(10, PinState.LOW, true);
-			
+
 			try {
 				Thread.sleep(50);
 			} catch (InterruptedException e) {
@@ -53,7 +53,7 @@ public class GPIOHandler {
 			}
 		}
 	}
-	
+
 	public static void cleanUp() {
 		GPIO.shutdown();
 	}

+ 1 - 1
src/main/java/eu/tankernn/assembly/output/SerialOutput.java

@@ -11,7 +11,7 @@ public class SerialOutput implements DataOutputMethod {
 	private static final Pin DATA_CLOCK_PIN = RaspiPin.GPIO_02;
 	private GpioPinDigitalOutput dataOutputPin;
 	private GpioPinDigitalOutput dataClockPin;
-	
+
 	@Override
 	public void init(GpioController GPIO) {
 		dataOutputPin = GPIO.provisionDigitalOutputPin(DATA_PIN, "Data pin", PinState.LOW);