Fix Toolchange (!no_move) return to status (#16699)

This commit is contained in:
InsanityAutomation
2020-01-29 01:06:06 -05:00
committed by GitHub
parent 9b45f342ee
commit 9bb8176d34
2 changed files with 5 additions and 1 deletions

View File

@ -242,7 +242,7 @@ public:
uint8_t protocol() { return (meta >> 4) & 0xF; }
uint8_t type() { return meta & 0xF; }
void reset() { token = 0; sync = 0; meta = 0; size = 0; checksum = 0; }
uint8_t data[1];
uint8_t data[2];
};
union Footer {