00001 /* Copyright (c) 2008 Axel Wachtler 00002 All rights reserved. 00003 00004 Redistribution and use in source and binary forms, with or without 00005 modification, are permitted provided that the following conditions 00006 are met: 00007 00008 * Redistributions of source code must retain the above copyright 00009 notice, this list of conditions and the following disclaimer. 00010 * Redistributions in binary form must reproduce the above copyright 00011 notice, this list of conditions and the following disclaimer in the 00012 documentation and/or other materials provided with the distribution. 00013 * Neither the name of the authors nor the names of its contributors 00014 may be used to endorse or promote products derived from this software 00015 without specific prior written permission. 00016 00017 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 00021 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00022 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00023 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00024 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00025 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00026 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00027 POSSIBILITY OF SUCH DAMAGE. */ 00028 00029 /* $Id: board_wdba1281.h,v 1.11 2011/01/09 14:23:18 awachtler Exp $ */ 00094 #if defined(mnb900) 00095 # define BOARD_TYPE (BOARD_MNB900) 00096 # define BOARD_NAME "mnb900" 00097 # define RADIO_TYPE (RADIO_AT86RF212) 00098 #elif defined(wdba1281) 00099 # define BOARD_TYPE (BOARD_WDBA1281) 00100 # define BOARD_NAME "wdba1281" 00101 # define RADIO_TYPE (RADIO_AT86RF230) 00102 #endif 00103 00104 #ifndef BOARD_WDBA1281_H 00105 #define BOARD_WDBA1281_H 00106 00107 /*=== Compile time parameters ========================================*/ 00108 00109 /*=== radio interface definition =====================================*/ 00110 #include "boards/base_zdma1281.h" 00111 00112 /*=== LED access macros ==============================================*/ 00113 #define LED_PORT PORTB 00114 #define LED_DDR DDRB 00115 #define LED_MASK 0xe0 00116 #define LED_SHIFT (5) 00117 #define LEDS_INVERSE (0) 00118 #define LED_NUMBER (3) 00120 /*=== KEY access macros ==============================================*/ 00121 #define PORT_KEY PORTE 00122 #define PIN_KEY PINE 00123 #define DDR_KEY DDRE 00124 00125 #define MASK_KEY (0xc0) 00126 #define SHIFT_KEY (6) 00127 #define INVERSE_KEYS (1) 00128 #define PULLUP_KEYS (1) 00129 00130 #define SLEEP_ON_KEY_INIT() do{}while(0) 00131 #define SLEEP_ON_KEY() \ 00132 do{\ 00133 EIMSK |= _BV(INT6);\ 00134 set_sleep_mode(SLEEP_MODE_PWR_DOWN);\ 00135 sleep_mode();\ 00136 EIMSK &= ~_BV(INT6);\ 00137 } while(0) 00138 00139 #define SLEEP_ON_KEY_vect INT6_vect 00140 00141 /*=== Host Interface ================================================*/ 00148 #define HIF_TYPE (HIF_UART_1) 00149 00150 /*=== TIMER Interface ===============================================*/ 00158 #define HWTMR_PRESCALE (1) 00159 #define HWTIMER_TICK ((1.0*HWTMR_PRESCALE)/F_CPU) 00160 #define HWTIMER_TICK_NB (0xFFFFUL+1) 00161 #define HWTIMER_REG (TCNT1) 00162 #define TIMER_TICK (HWTIMER_TICK_NB * HWTIMER_TICK) 00163 #define TIMER_POOL_SIZE (4) 00164 #define TIMER_INIT() \ 00165 do{ \ 00166 TCCR1B |= (_BV(CS10));\ 00167 TIMSK1 |= _BV(TOIE1); \ 00168 }while(0) 00169 #define TIMER_IRQ_vect TIMER1_OVF_vect 00170 00171 #endif /* BOARD_WDBA1281_H*/