Fix motor off by one errors.
[uccvend-snackrom.git] / ROM2 / motors.c
1 #include "motors.h"
2 #include "vend.h"
3
4 const u8 motor_lookup[80] = 
5 { 1,12,23,34,46,57,68,79,
6  11,22,33,44,56,67,78,89,
7  21,32,43,54,66,77,88,99,
8  31,42,53,64,76,87,98,
9   9,41,52,63,74,86,97,
10   8,19,51,62,73,84,96,
11   7,18,29,61,72,83,94,
12   6,17,28,39,71,82,93,
13   4,16,27,38,49,81,92,
14   3,14,26,37,48,59,91,
15   2,13,24,36,47,58,69,
16 };
17
18 void motor_shift_send(u8 data) {
19         u8 i;
20         /* load it in, MSB first */
21         for (i = 0; i < 8; i++) {
22                 if (data & 0x80)
23                         bset_misc_output(A3800_MOTOR_DATA);
24                 else
25                         bclr_misc_output(A3800_MOTOR_DATA);
26
27                 delay(1);
28
29                 /* clock pulse */
30                 bset((void*)&_io_ports[M6811_PORTA], PORTA_MOTOR_CLOCK);
31                 delay(1);
32                 bclr((void*)&_io_ports[M6811_PORTA], PORTA_MOTOR_CLOCK);
33                 delay(1);
34                 
35                 data = data << 1;
36         }
37 }
38
39 void motor_on(u8 slot) {
40         u8 row, col;
41         row = slot%10;
42         col = slot/10;
43         if (row >= 5) row--; 
44
45         /* loads up the shift register with the right bits */
46         bclr_misc_output(A3800_MOTOR_COL8_ENABLE|A3800_MOTOR_COL9_ENABLE);
47         switch (col) {
48                 case 8:
49                         bset_misc_output(A3800_MOTOR_COL8_ENABLE);
50                         motor_shift_send(0);
51                         break;
52                 case 9:
53                         bset_misc_output(A3800_MOTOR_COL9_ENABLE);
54                         motor_shift_send(0);
55                         break;
56                 default: /* < 8 */
57                         motor_shift_send(1 << col); /* cols from 0..7 */
58                         bclr((void*)&_io_ports[M6811_PORTA], PORTA_MOTOR_COL_DISABLE);
59         }
60
61         motor_shift_send(1 << (row-1)); /* rows from 1..8 here */
62
63         bclr((void*)&_io_ports[M6811_PORTA], PORTA_MOTOR_CLOCK);
64         bclr_changer_output(A3000_MOTOR_ROW_DISABLE);
65 }
66
67 void motors_off() {
68         bset_changer_output(A3000_MOTOR_ROW_DISABLE);
69         delay(10); /* XXX cf motors_off */
70         bset((void*)&_io_ports[M6811_PORTA], PORTA_MOTOR_COL_DISABLE);
71         bclr_misc_output(A3800_MOTOR_COL8_ENABLE | A3800_MOTOR_COL9_ENABLE);
72 }
73
74 bool motor_here(u8 slot) {
75         u8 i, c = 0;
76         motor_on(slot);
77         for (i=0; i < 8; i++) {
78                 delay(5);
79                 if (_io_ports[M6811_PORTE] & PORTE_MOTOR_OVERVOLTAGE) {
80                         c++;
81                         if (c == 0xff) {
82                                 motors_off();
83                                 return 1;
84                         } else
85                                 continue;
86                 }
87         }
88         motors_off();
89         return 0;
90 }
91
92 bool is_motor(u8 slot) {
93         /* FIXME - does more need to be done? */
94         return motor_here(slot);
95 }
96
97 bool left_home(u8 slot) {
98         u8 i, r = slot%10;
99         if (r >= 5) r--; 
100         r = 1 << (r-1);
101
102         for (i = 0; i < 5; i++)
103                 if ((home_sensors & r) == 0) return 1;
104
105         /* it never left */
106         return 0;
107 }
108
109 bool back_home(u8 slot) {
110         u8 i, r = slot%10;
111         if (r >= 5) r--; 
112         r = 1 << (r-1);
113
114         for (i = 0; i < 5; i++) {
115                 if (home_sensors & r) return 1;
116                 if ((_io_ports[M6811_PORTE] & PORTE_MOTOR_OVERCURRENT) == 0) return 1;
117         }
118
119         /* it never left */
120         return 0;
121 }
122
123 bool motor_overcurrent() {
124         u8 t = 0, i = 0;
125         while(1) {
126                 t++;
127                 if (7 == t) return 1;
128                 if (_io_ports[M6811_PORTE] & PORTE_MOTOR_OVERCURRENT) continue;
129                 t = 0;
130                 i++;
131                 if (5 == i) return 0;
132         }
133 }
134
135 u8 dispense_motor(u8 slot) {
136         //if (!is_motor(slot)) return MOTOR_NOSLOT;
137
138         motor_on(slot);
139         delay(100);
140         
141         if (!left_home(slot)) {
142                 motors_off();
143                 return MOTOR_HOME_FAIL;
144         }
145
146         while (1) {
147                 if (motor_overcurrent()) {
148                         motors_off();
149                         return MOTOR_CURRENT_FAIL;
150                 }
151                 /* something should call motor_here? */
152                 if (back_home(slot)) {
153                         motors_off();
154                         return MOTOR_SUCCESS;
155                 }
156         }
157 }
158

UCC git Repository :: git.ucc.asn.au