1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-02 20:30:00 +00:00

Adopt same format as the master.

This commit is contained in:
Thomas Harte 2022-08-29 11:46:53 -04:00
parent 303ea496f1
commit 330d852686

View File

@ -70,8 +70,10 @@ struct Scan {
uint16_t cyclesSinceRetrace;
} endPoints[2];
uint8_t compositeAmplitude;
uint8_t __alignment[3]; // TODO: reuse some padding as the next two fields, to save two bytes.
union {
uint8_t compositeAmplitude;
uint32_t padding; // TODO: reuse some padding as the next two fields, to save two bytes.
};
uint16_t dataY;
uint16_t line;
};