7c68645ce88a6741cfc3d64a6e14e05540469001
[fw/altos] / ao.h
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #ifndef _AO_H_
19 #define _AO_H_
20
21 #include <stdint.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include "cc1111.h"
25
26 #define DATA_TO_XDATA(a)        ((void __xdata *) ((uint8_t) (a) | 0xff00))
27
28 #define AO_STACK_START  0x32
29 #define AO_STACK_END    0xfe
30 #define AO_STACK_SIZE   (AO_STACK_END - AO_STACK_START + 1)
31
32 struct ao_task {
33         __xdata void    *wchan;
34         uint8_t stack[AO_STACK_SIZE];
35         uint8_t stack_count;
36 };
37
38 #define AO_NUM_TASKS    10
39
40 #define AO_ERROR_NO_TASK        1
41
42 #define ao_interrupt_disable()  (EA = 0)
43 #define ao_interrupt_enable()   (EA = 1)
44
45 /* ao_task.c */
46 int ao_sleep(__xdata void *wchan);
47 int ao_wakeup(__xdata void *wchan);
48 void ao_add_task(__xdata struct ao_task * task, void (*start)(void));
49 void ao_start_scheduler(void);
50 void ao_yield(void) _naked;
51 void ao_panic(uint8_t reason);
52
53 /* ao_timer.c */
54
55 volatile __data uint16_t ao_time;
56
57 #define AO_MS_TO_TICKS(ms)      ((ms) / 10)
58 #define AO_SEC_TO_TICKS(s)      ((s) * 100)
59
60 void ao_timer_isr(void) interrupt 9;
61 void ao_timer_init(void);
62 uint16_t ao_time_atomic(void);
63 void ao_delay(uint16_t ticks);
64
65 /* ao_adc.c */
66
67 #define ADC_RING        32
68
69 struct ao_adc {
70         uint16_t        tick;
71         int16_t         accel;
72         int16_t         pres;
73         int16_t         temp;
74         int16_t         v_batt;
75         int16_t         sense_d;
76         int16_t         sense_m;
77 };
78
79 extern volatile __xdata struct ao_adc   ao_adc_ring[ADC_RING];
80 extern volatile __data uint8_t          ao_adc_head;
81
82 void ao_adc_isr(void) interrupt 1;
83 void ao_adc_init(void);
84 void ao_adc_poll(void);
85 void ao_adc_get(__xdata struct ao_adc *packet);
86
87 /* ao_beep.c */
88
89 #define AO_BEEP_LOW     150
90 #define AO_BEEP_MID     94
91 #define AO_BEEP_HIGH    75
92 #define AO_BEEP_OFF     0
93
94 void
95 ao_beep_init(void);
96
97 void
98 ao_beep(uint8_t beep);
99
100 void
101 ao_beep_for(uint8_t beep, uint16_t ticks);
102
103 /* ao_led.c */
104
105 #define AO_LED_NONE     0
106 #define AO_LED_GREEN    1
107 #define AO_LED_RED      2
108
109 void
110 ao_led_init(void);
111
112 void
113 ao_led_on(uint8_t colors);
114
115 void
116 ao_led_off(uint8_t colors);
117
118 void
119 ao_led_set(uint8_t colors);
120
121 void
122 ao_led_for(uint8_t colors, uint16_t ticks);
123
124 /* ao_usb.c */
125
126 void
127 ao_usb_isr(void) interrupt 6;
128
129 void
130 ao_usb_flush(void);
131
132 void
133 ao_usb_putchar(uint8_t c);
134
135 uint8_t
136 ao_usb_getchar(void);
137
138 void
139 ao_usb_init(void);
140
141 #endif /* _AO_H_ */