2 * Copyright © 2011 Keith Packard <keithp@keithp.com>
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; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 #include <avr/pgmspace.h>
23 #define AO_LED_ORANGE (1<<4)
24 #define AO_LED_SERIAL 4
25 #define AO_LED_PANIC AO_LED_ORANGE
26 #define AO_LED_REPORT AO_LED_ORANGE
27 #define LEDS_AVAILABLE (AO_LED_ORANGE)
28 #define USE_SERIAL_1_STDIN 0
30 #define PACKET_HAS_SLAVE 0
31 #define HAS_SERIAL_1 0
37 #define AVR_CLOCK 250000UL
40 #define SPI_PORT PORTB
43 #define AO_MS5607_CS_PORT PORTB
44 #define AO_MS5607_CS_PIN 3
47 #define AO_MS5607_SPI_INDEX 0
48 #define AO_MS5607_MISO_PORT PORTB
49 #define AO_MS5607_MISO_PIN 0
50 #define AO_MS5607_BARO_OVERSAMPLE 4096
51 #define AO_MS5607_TEMP_OVERSAMPLE 1024
54 #define I2C_PORT PORTB
57 #define I2C_PIN_SCL PINB2
58 #define I2C_PIN_SDA PINB0
60 #define AO_CONST_ATTRIB PROGMEM
61 typedef int32_t alt_t;
62 #define FETCH_ALT(o) ((alt_t) pgm_read_dword(&altitude_table[o]))
64 #define AO_ALT_VALUE(x) ((x) * (alt_t) 10)
66 #endif /* _AO_PINS_H_ */