mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-02-04 07:13:16 +08:00
9 lines
226 B
C
9 lines
226 B
C
|
typedef struct QCalcTag {
|
||
|
QHsm super; /* derives from QHsm */
|
||
|
double operand1;
|
||
|
double operand2;
|
||
|
char display[DISP_WIDTH + 1];
|
||
|
uint8_t len;
|
||
|
uint8_t opKey;
|
||
|
} QCalc;
|