mirror of
https://github.com/euphy/polargraphcontroller
synced 2024-11-15 10:47:56 +01:00
Fixed conflict
This commit is contained in:
commit
9dca343ed1
@ -2222,12 +2222,12 @@ void drawStatusText(int x, int y)
|
||||
if (drawbotReady)
|
||||
{
|
||||
fill(0, 200, 0);
|
||||
if (currentHardware >= HARDWARE_VER_MEGA_POLARSHIELD)
|
||||
if (currentHardware >= HARDWARE_VER_POLARPRO)
|
||||
drawbotStatus = "Polargraph READY! (PRO)";
|
||||
else if (currentHardware >= HARDWARE_VER_MEGA_POLARSHIELD)
|
||||
drawbotStatus = "Polargraph READY! (PolargraphSD)";
|
||||
else if (currentHardware >= HARDWARE_VER_MEGA)
|
||||
drawbotStatus = "Polargraph READY! (Mega)";
|
||||
else if (currentHardware >= HARDWARE_VER_POLARPRO)
|
||||
drawbotStatus = "Polargraph READY! (PRO)";
|
||||
else
|
||||
drawbotStatus = "Polargraph READY! (Uno)";
|
||||
}
|
||||
@ -2549,7 +2549,8 @@ void setHardwareVersionFromIncoming(String readyString)
|
||||
}
|
||||
|
||||
if (HARDWARE_VER_MEGA == verInt
|
||||
|| HARDWARE_VER_MEGA_POLARSHIELD == verInt)
|
||||
|| HARDWARE_VER_MEGA_POLARSHIELD == verInt
|
||||
|| HARDWARE_VER_POLARPRO == verInt)
|
||||
newHardwareVersion = verInt;
|
||||
else
|
||||
newHardwareVersion = HARDWARE_VER_UNO;
|
||||
@ -2802,9 +2803,11 @@ void dispatchCommandQueue()
|
||||
commandQueue.remove(0);
|
||||
println("Dispatching command: " + command);
|
||||
}
|
||||
// Checksum crc = new CRC32();
|
||||
// crc.update(lastCommand.getBytes(), 0, lastCommand.length());
|
||||
// lastCommand = lastCommand+":"+crc.getValue();
|
||||
if (useChecksum()) {
|
||||
Checksum crc = new CRC32();
|
||||
crc.update(lastCommand.getBytes(), 0, lastCommand.length());
|
||||
lastCommand = lastCommand+":"+crc.getValue();
|
||||
}
|
||||
println("Last command:" + lastCommand);
|
||||
myPort.write(lastCommand);
|
||||
myPort.write(10); // OH *$%! of COURSE you should terminate it.
|
||||
@ -2816,6 +2819,10 @@ void dispatchCommandQueue()
|
||||
}
|
||||
}
|
||||
|
||||
boolean useChecksum() {
|
||||
return currentHardware == 200;
|
||||
}
|
||||
|
||||
void addToCommandQueue(String command)
|
||||
{
|
||||
synchronized (commandQueue)
|
||||
|
Loading…
Reference in New Issue
Block a user