diff options
author | tlatorre <tlatorre@uchicago.edu> | 2019-06-10 11:50:17 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2019-06-10 11:50:17 -0500 |
commit | 625dfc21d9588ec589bd28c009f56ce1d4792984 (patch) | |
tree | 28f72ae15b7cd796da6dc74f07356a84f4c30745 /src/pmt.h | |
parent | 3398cdfd9f096e0f20b09746caeb48e424d85eb3 (diff) | |
download | sddm-625dfc21d9588ec589bd28c009f56ce1d4792984.tar.gz sddm-625dfc21d9588ec589bd28c009f56ce1d4792984.tar.bz2 sddm-625dfc21d9588ec589bd28c009f56ce1d4792984.zip |
update get_event() to include all PMT types
This commit updates get_event() to include OWL, LG, FECD, BUTT, and NECK tubes.
Diffstat (limited to 'src/pmt.h')
-rw-r--r-- | src/pmt.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -32,7 +32,7 @@ #define PMT_LG 3 #define PMT_BUTT 4 #define PMT_NECK 5 -#define PMT_CALIBRATION 5 +#define PMT_CALIBRATION 6 #define PMT_SPARE 10 #define PMT_INVALID 11 @@ -47,6 +47,7 @@ typedef struct pmt { extern pmt pmts[MAX_PMTS]; +void get_pmt_type_string(int pmt_type, char *s); int load_pmt_info(); #endif |