altos: avr-gcc appears to find the loader scripts without help now
[fw/altos] / src / nanopeak-v0.1 / ao_pins.h
1 /*
2  * Copyright © 2011 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_PINS_H_
19 #define _AO_PINS_H_
20 #include <avr/pgmspace.h>
21
22 #define AO_LED_ORANGE           (1<<3)
23 #define AO_LED_SERIAL           3
24 #define AO_LED_PANIC            AO_LED_ORANGE
25 #define AO_LED_REPORT           AO_LED_ORANGE
26 #define LEDS_AVAILABLE          (AO_LED_ORANGE)
27 #define USE_SERIAL_1_STDIN      0
28 #define HAS_USB                 0
29 #define PACKET_HAS_SLAVE        0
30 #define HAS_SERIAL_1            0
31 #define HAS_TASK                0
32 #define HAS_MS5607              1
33 #define HAS_MS5611              0
34 #define HAS_EEPROM              0
35 #define HAS_BEEP                0
36 #define AVR_CLOCK               250000UL
37
38 /* SPI */
39 #define SPI_PORT                PORTB
40 #define SPI_PIN                 PINB
41 #define SPI_DIR                 DDRB
42 #define AO_MS5607_CS_PORT       PORTB
43 #define AO_MS5607_CS_PIN        4
44
45 /* MS5607 */
46 #define AO_MS5607_SPI_INDEX     0
47 #define AO_MS5607_MISO_PORT     PORTB
48 #define AO_MS5607_MISO_PIN      0
49 #define AO_MS5607_BARO_OVERSAMPLE       4096
50 #define AO_MS5607_TEMP_OVERSAMPLE       1024
51
52 /* I2C */
53 #define I2C_PORT                PORTB
54 #define I2C_PIN                 PINB
55 #define I2C_DIR                 DDRB
56 #define I2C_PIN_SCL             PINB2
57 #define I2C_PIN_SDA             PINB0
58
59 #define AO_CONST_ATTRIB         PROGMEM
60 typedef int32_t alt_t;
61 #define FETCH_ALT(o)            ((alt_t) pgm_read_dword(&altitude_table[o]))
62
63 #define AO_ALT_VALUE(x)         ((x) * (alt_t) 10)
64
65 #endif /* _AO_PINS_H_ */