mirror of
https://github.com/Architeuthis-Flux/Jumperless.git
synced 2024-11-28 01:11:00 +01:00
Add command 'getchipstatus'
This commit is contained in:
parent
64defcaf22
commit
4765efc36e
@ -22,7 +22,7 @@ ArduinoJson::DynamicJsonDocument machineModeJson(8000);
|
|||||||
|
|
||||||
enum machineModeInstruction lastReceivedInstruction = unknown;
|
enum machineModeInstruction lastReceivedInstruction = unknown;
|
||||||
|
|
||||||
char machineModeInstructionString[NUMBEROFINSTRUCTIONS][20] = {"unknown", "netlist", "getnetlist", "bridgelist", "getbridgelist", "lightnode", "lightnet", "getmeasurement", "gpio", "uart", "arduinoflash", "setnetcolor", "setnodecolor", "setsupplyswitch", "getsupplyswitch"};
|
char machineModeInstructionString[NUMBEROFINSTRUCTIONS][20] = {"unknown", "netlist", "getnetlist", "bridgelist", "getbridgelist", "lightnode", "lightnet", "getmeasurement", "gpio", "uart", "arduinoflash", "setnetcolor", "setnodecolor", "setsupplyswitch", "getsupplyswitch", "getchipstatus"};
|
||||||
|
|
||||||
enum machineModeInstruction parseMachineInstructions(int *sequenceNumber)
|
enum machineModeInstruction parseMachineInstructions(int *sequenceNumber)
|
||||||
{
|
{
|
||||||
@ -810,3 +810,24 @@ void listBridgesMachine(void)
|
|||||||
}
|
}
|
||||||
Serial.println("]");
|
Serial.println("]");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void printChipStatusMachine() {
|
||||||
|
Serial.println("::chipstatus-begin");
|
||||||
|
for (int i = 0; i < 12; i++) {
|
||||||
|
Serial.print("::chipstatus[");
|
||||||
|
Serial.print(chipNumToChar(i));
|
||||||
|
Serial.print(",");
|
||||||
|
for (int j = 0; j < 16; j++) {
|
||||||
|
Serial.print(ch[i].xStatus[j]);
|
||||||
|
Serial.print(",");
|
||||||
|
}
|
||||||
|
for (int j = 0; j < 8; j++) {
|
||||||
|
Serial.print(ch[i].yStatus[j]);
|
||||||
|
if (j != 7) {
|
||||||
|
Serial.print(",");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Serial.println("]");
|
||||||
|
}
|
||||||
|
Serial.println("::chipstatus-end");
|
||||||
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#ifndef MACHINECOMMANDS_H
|
#ifndef MACHINECOMMANDS_H
|
||||||
#define MACHINECOMMANDS_H
|
#define MACHINECOMMANDS_H
|
||||||
|
|
||||||
#define NUMBEROFINSTRUCTIONS 16
|
#define NUMBEROFINSTRUCTIONS 17
|
||||||
|
|
||||||
enum machineModeInstruction
|
enum machineModeInstruction
|
||||||
{
|
{
|
||||||
@ -20,7 +20,8 @@ enum machineModeInstruction
|
|||||||
setnetcolor,
|
setnetcolor,
|
||||||
setnodecolor,
|
setnodecolor,
|
||||||
setsupplyswitch,
|
setsupplyswitch,
|
||||||
getsupplyswitch
|
getsupplyswitch,
|
||||||
|
getchipstatus
|
||||||
};
|
};
|
||||||
|
|
||||||
extern char inputBuffer[INPUTBUFFERLENGTH];
|
extern char inputBuffer[INPUTBUFFERLENGTH];
|
||||||
@ -48,4 +49,6 @@ int setSupplySwitch(void);
|
|||||||
void listNetsMachine(void);
|
void listNetsMachine(void);
|
||||||
void listBridgesMachine(void);
|
void listBridgesMachine(void);
|
||||||
|
|
||||||
|
void printChipStatusMachine();
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -705,6 +705,10 @@ if (millis() - lastTimeCommandRecieved > 100)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case getchipstatus:
|
||||||
|
printChipStatusMachine();
|
||||||
|
break;
|
||||||
|
|
||||||
// case gpio:
|
// case gpio:
|
||||||
// break;
|
// break;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user