Make a delay before testing home sensors
[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         for (i=0; i < 8; i++) {
77                 motor_on(slot);
78                 delay(5);
79                 if ((_io_ports[M6811_PORTE] & PORTE_MOTOR_OVERVOLTAGE) == 0) {
80                         c++;
81                         if (c == 3) {
82                                 motors_off();
83                                 return 1;
84                         }
85                 }
86                 motors_off();
87         }
88         return 0;
89 }
90
91 bool is_motor(u8 slot) {
92         /* FIXME - does more need to be done? */
93         return motor_here(slot);
94 }
95
96 bool start_motor(u8 slot) {
97         u16 i;
98         u8 r = slot%10;
99         if (r >= 5) r--; 
100         r = 1 << (r-1);
101         motor_on(slot);
102         delay(100);
103         for (i = 0; i < 1000; i++) {
104                 if ((home_sensors & r) != 0) return 1;
105                 delay(1);
106         }
107         /* it never left */
108         motors_off();
109         return 0;
110 }
111
112 bool back_home(u8 slot) {
113         u8 i, r = slot%10;
114         if (r >= 5) r--; 
115         r = 1 << (r-1);
116
117         for (i = 0; i < 5; i++) {
118                 if ((home_sensors & r) == 0) return 1;
119                 delay(1);
120         }
121
122         /* it never arrived */
123         return 0;
124 }
125
126 #define is_overcurrent() ((_io_ports[M6811_PORTE] & PORTE_MOTOR_NOT_OVERCURRENT)==0)
127 bool motor_overcurrent() {
128         u8 good_passes = 0, t;
129         for (t = 0; t < 8; t++) {
130                 delay(1);
131                 if (is_overcurrent()) continue;
132                 t = 0;
133                 good_passes++;
134                 if (good_passes == 5) return 0;
135         }
136         return 1;
137 }
138
139 u8 dispense_motor(u8 slot) {
140         if (!is_motor(slot)) return MOTOR_NOSLOT;
141         if (!start_motor(slot)) return MOTOR_HOME_FAIL;
142
143         while (1) {
144                 if (motor_overcurrent()) {
145                         motors_off();
146                         return MOTOR_CURRENT_FAIL;
147                 }
148                 /* something should call motor_here? */
149                 if (back_home(slot)) {
150                         motors_off();
151                         return MOTOR_SUCCESS;
152                 }
153         }
154 }
155

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