-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtypes.m
118 lines (104 loc) · 1.04 KB
/
types.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// gpiotype
#ifndef i
#define i(g,t)
#endif
#ifndef fi
#define fi(g,t)
#endif
#ifndef o
#define o(g,t)
#endif
#ifndef fo
#define fo(g,t)
#endif
#ifndef g
#define g(g)
#endif
#ifndef gg
#define gg(p) g(p)
#endif
#ifndef n
#define n(g,i)
#endif
#ifndef io
#define io(g,t)
#endif
i(I,Input);
fi(E,Exit button);
fi(O,Door open);
fi(L,Lock disengaged);
fi(D,Deadlock disengaged);
fi(M,Manual override);
o(P,Fixed output);
o(O,Output);
fo(L,Unlock output);
fo(D,Undeadlock output);
fo(B,Beep output);
fo(E,Error output);
io(IO,Input/Output);
io(I,Input);
io(O,Output);
g(0);
g(1);
g(2);
g(3);
g(4);
g(5);
g(6);
g(7);
g(8);
g(9);
g(10);
g(11);
g(12);
g(13);
g(14);
g(15);
g(16);
g(17);
g(18);
g(19);
g(20);
g(21);
g(22);
g(23);
g(25);
g(26);
g(27);
g(28);
g(29);
g(30);
g(31);
g(32);
g(33);
g(34);
g(35);
g(36);
g(37);
g(38);
g(39);
g(40);
g(41);
g(42);
g(43);
g(44);
g(45);
g(46);
g(47);
gg(48);
n(30,48);
n(31,49);
n(32,50);
n(33,51);
n(34,52);
n(35,53);
n(71,54);
n(72,55);
#undef i
#undef fi
#undef o
#undef fo
#undef g
#undef gg
#undef n
#undef io