diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-12-03 20:38:41 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-12-03 20:38:41 +0100 |
commit | ba627dd9ecb578e9852c7b9cce67ec63199d1acf (patch) | |
tree | 27c4258311ca8c8ed7ff67a8a0bc7280e8fcae79 /spectro/i1disp.h | |
parent | 69aec3b712232e93600ecd741269fed1f90b412a (diff) | |
parent | 3abb40d43649adb3807180692d8579c405524675 (diff) |
Merge branch 'release/2.0.0+repack-1'2.0.0+repack-1
Diffstat (limited to 'spectro/i1disp.h')
-rwxr-xr-x[-rw-r--r--] | spectro/i1disp.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/spectro/i1disp.h b/spectro/i1disp.h index eada827..61423b7 100644..100755 --- a/spectro/i1disp.h +++ b/spectro/i1disp.h @@ -78,6 +78,7 @@ /* Sub-type of instrument (i.e. based on vers, char code, unlock code) */ typedef enum { + i1d2_unkn = -1, i1d2_norm = 0, /* Normal (i1d1, i1d2, Smile) */ i1d2_lite = 1, /* "Lite" */ i1d2_munki = 2, /* "Munk" */ @@ -88,15 +89,15 @@ typedef enum { i1d1_sencoreIII = 7, /* Sencore ColorPro III */ i1d1_sencoreIV = 8, /* Sencore ColorPro IV */ i1d1_sencoreV = 9 /* Sencore ColorPro V */ -} i1d2_dtype; +} i1d2_stype; /* I1DISP communication object */ struct _i1disp { INST_OBJ_BASE - int dtype; /* Device type: 0 = i1D1, 1 = i1D2, 2 = Smile */ - i1d2_dtype stype; /* Sub type */ + int btype; /* Device type: 0 = i1D1, 1 = i1D2, 2 = Smile */ + i1d2_stype stype; /* Sub type */ inst_mode mode; /* Currently selected mode */ |