Repository for import to local machine

Dependencies:   DMBasicGUI DMSupport

Committer:
jmitc91516
Date:
Mon Jul 31 15:37:57 2017 +0000
Revision:
8:26e49e6955bd
Parent:
1:a5258871b33d
Method ramp scrolling improved, and more bitmaps moved to QSPI memory

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jmitc91516 0:47c880c1463d 1 #ifndef GCCOMPONENTSTATUSENUMS_H
jmitc91516 0:47c880c1463d 2 #define GCCOMPONENTSTATUSENUMS_H
jmitc91516 0:47c880c1463d 3
jmitc91516 1:a5258871b33d 4 /*
jmitc91516 1:a5258871b33d 5 Enums enumerating the possible components of a GC, and the possible status of each one.
jmitc91516 1:a5258871b33d 6 */
jmitc91516 1:a5258871b33d 7 typedef enum enumGCComponent { COLUMN, INJECTOR, DETECTOR, GAS } GCComponent;
jmitc91516 1:a5258871b33d 8
jmitc91516 1:a5258871b33d 9 typedef enum enumGCComponentStatus { COLD, HEATING_UP, READY, FAULTED, NONE } GCComponentStatus; // 'NONE' means (e.g.) 'not displayed yet'
jmitc91516 0:47c880c1463d 10
jmitc91516 0:47c880c1463d 11 #endif //GCCOMPONENTSTATUSENUMS_H