c9cc6d65472e4df47efb68a6b75ce0b7df03f9a2
[uccvend-snackrom.git] / ROM2 / vend.h
1 #ifndef _VEND_H_
2 #define _VEND_H_
3
4 #include "ports.h"
5 #include "types.h"
6 #include "asm.h"
7
8 /* addresses of these set at link time
9  * to add more addresses, define them here with buffered_addr_h, in helpers.c 
10  * with buffered_addr, and also in LDFLAGS in the Makefile
11  */
12 #define buffered_addr(a) \
13         extern volatile u8* _##a;          \
14         u8 a; \
15         extern inline void set_##a(u8 b) { a = *_##a = b; } \
16         extern inline void bset_##a(const u8 m) { bset(&a, m); *_##a = a; } \
17         extern inline void bclr_##a(const u8 m) { bclr(&a, m); *_##a = a; }
18
19 buffered_addr(changer_output);
20 buffered_addr(misc_output);
21
22 extern volatile u8* _switch_input;
23 #define switch_input (*_switch_input)
24 extern volatile u8* _misc_input;
25 #define misc_input (*_misc_input)
26 extern volatile u8* _home_sensors;
27 #define home_sensors (*_home_sensors)
28
29 /******* from helpers.c *******/
30 void delay(u16 ms);
31 void print_amount(u16 amt);
32
33 /******** Some meaningful bits ******/
34 #define PORTA_CHIME         0x10 /* chime is on when set */
35 #define PORTA_MOTOR_CLOCK   0x20
36 #define PORTA_MOTOR_COL_DISABLE 0x40
37 #define PORTA_DISP_RESET    0x80 /* active low */
38
39 #define PORTD_KEYPAD_ROW    0x20 /* clear for row 0, set for row 1 */
40
41 #define PORTE_MOTOR_OVERCURRENT 0x01
42 #define PORTE_MOTOR_OVERVOLTAGE 0x02
43
44 /* Address 3000 bits */
45 #define A3000_MOTOR_ROW_DISABLE 0x80
46
47 /* Address 1800 bits */
48 #define A1800_DOOR_OPEN     0x20
49
50 /* Address 3800 bits */
51 #define A3800_DISPLAY_WRITE  0x04
52 #define A3800_MOTOR_DATA        0x10
53 #define A3800_MOTOR_COL8_ENABLE 0x20
54 #define A3800_MOTOR_COL9_ENABLE 0x40
55
56 /******* from main.c *******/
57 int __attribute__((noreturn)) main (void);
58 void __attribute__((interrupt)) rti (void);
59
60 /* other one liners */
61 extern inline bool door_open() { return switch_input & A1800_DOOR_OPEN; }
62 extern inline void spi_enable()  { bset((void*)&_io_ports[M6811_SPCR], M6811_SPE); }
63 extern inline void spi_disable() { bclr((void*)&_io_ports[M6811_SPCR], M6811_SPE); }
64
65 #endif /* _VEND_H_ */

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