blob: 6ca12af65836904ccbc9a05c1937e1347c054715 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/*
* Copyright © 2011 Keith Packard <keithp@keithp.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#ifndef _AO_ARCH_H_
#define _AO_ARCH_H_
#include <stdio.h>
#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/sleep.h>
#define F_CPU 8000000UL // 8 MHz
/*
* AVR definitions and code fragments for AltOS
*/
#define AO_STACK_SIZE 116
#define AO_PORT_TYPE uint8_t
/* Various definitions to make GCC look more like SDCC */
#define ao_arch_naked_declare __attribute__((naked))
#define ao_arch_naked_define
#define __pdata
#define __data
#define __xdata
#define __code const
#define __reentrant
#define __critical
#define __interrupt(n)
#define __at(n)
#define ao_arch_reboot() /* XXX */
#define ao_arch_nop() asm("nop")
#define ao_arch_interrupt(n) /* nothing */
#undef putchar
#undef getchar
#define putchar(c) ao_putchar(c)
#define getchar ao_getchar
#define ao_arch_wait_interrupt() do { \
sleep_enable(); \
sei(); \
sleep_cpu(); \
sleep_disable(); \
} while (0)
#define ao_arch_critical(b) do { cli(); do { b } while (0); sei(); } while (0)
#define ao_arch_block_interrupts() cli()
#define ao_arch_release_interrupts() sei()
#define ao_mutex_get(m)
#define ao_mutex_put(m)
void
ao_delay_until(uint16_t target);
/* We can't hit 100 Hz, but we can hit 125 */
#define AO_HERTZ 125
void
ao_eeprom_read(uint16_t addr, void *buf, uint16_t len);
void
ao_eeprom_write(uint16_t addr, void *buf, uint16_t len);
#endif /* _AO_ARCH_H_ */
|