bd93ab49b92c0e04804399e76e2dba1445ec618a
[uccvend-snackrom.git] / ROM2 / chime.h
1 #ifndef _CHIME_H_
2 #define _CHIME_H_
3
4 #include "types.h"
5 #include "vend.h"
6
7 #define CHIME_TIME 5 /* number of RTIs to have the chime on (6.6ms each) */
8
9 extern volatile u8 chime_count;
10
11 /* outside world interface */
12 extern inline void chime_start() { chime_count = CHIME_TIME; }
13 extern inline void chime_for(u8 time) { chime_count = time; }
14
15 void chime(); /* RTI interrupt */
16
17 /* internal helpers, also could be called from outside world */
18 extern inline void chime_on() { bset((void*)&_io_ports[M6811_PORTA], PORTA_CHIME); }
19 extern inline void chime_off() { bclr((void*)&_io_ports[M6811_PORTA], PORTA_CHIME);}
20
21 #endif /* _CHIME_H_ */

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