board_rbb.h

Go to the documentation of this file.
00001 /* Copyright (c) 2007 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__rbb_8h_source.html,v 1.1.1.4 2013/04/09 21:11:40 awachtler Exp $ */
00079 #if defined(rbb230)
00080 # define BOARD_TYPE  BOARD_RBB230
00081 # define BOARD_NAME "rbb230"
00082 # define RADIO_TYPE (RADIO_AT86RF230A)
00083 #elif defined(rbb230b)
00084 # define BOARD_TYPE  BOARD_RBB230B
00085 # define BOARD_NAME "rbb230b"
00086 # define RADIO_TYPE (RADIO_AT86RF230B)
00087 #elif defined(rbb231)
00088 # define BOARD_TYPE  BOARD_RBB231
00089 # define BOARD_NAME  "rbb231"
00090 # define RADIO_TYPE (RADIO_AT86RF231)
00091 #elif defined(rbb212)
00092 # define BOARD_TYPE  BOARD_RBB212
00093 # define BOARD_NAME  "rbb212"
00094 # define RADIO_TYPE (RADIO_AT86RF212)
00095 #elif defined(rbb232)
00096 # define BOARD_TYPE  BOARD_RBB232
00097 # define BOARD_NAME  "rbb232"
00098 # define RADIO_TYPE (RADIO_AT86RF232)
00099 #elif defined(rbb233)
00100 # define BOARD_TYPE  BOARD_RBB233
00101 # define BOARD_NAME  "rbb233"
00102 # define RADIO_TYPE (RADIO_AT86RF233)
00103 #endif
00104 
00105 #ifndef BOARD_RBB_H
00106 #define BOARD_RBB_H
00107 
00108 /*=== Compile time parameters ========================================*/
00109 
00110 /*=== radio interface definition =====================================*/
00111 #if BOARD_TYPE == BOARD_RBB230 || BOARD_TYPE == BOARD_RBB230B
00112 # include "base_rdk230.h"
00113 #else
00114 # include "base_rdk2xx.h"
00115 #endif
00116 
00117 /*=== LED access macros ==============================================*/
00118 #define LED_PORT     PORTE
00119 #define LED_DDR      DDRE
00120 #define LED_MASK     (0x1c)
00121 #define LED_SHIFT    (2)
00122 #define LEDS_INVERSE (1)
00123 #define LED_NUMBER   (3)
00124 
00125 /*=== KEY access macros ==============================================*/
00126 #define PORT_KEY     PORTE
00127 #define PIN_KEY      PINE
00128 #define DDR_KEY      DDRE
00129 #define MASK_KEY     (0x20)
00130 #define SHIFT_KEY    (5)
00131 #define INVERSE_KEYS (1)
00132 #define PULLUP_KEYS  (1)
00133 
00134 #define SLEEP_ON_KEY_INIT() do{}while(0)
00135 #define SLEEP_ON_KEY() \
00136         do{\
00137             EIMSK |= _BV(INT5);\
00138             set_sleep_mode(SLEEP_MODE_PWR_DOWN);\
00139             sleep_mode();\
00140             EIMSK &= ~_BV(INT5);\
00141         } while(0)
00142 
00143 #define SLEEP_ON_KEY_vect INT5_vect
00144 
00145 /*=== Host Interface ================================================*/
00146 #define HIF_TYPE (HIF_UART_1)
00147 #define HIF_IO_ENABLE() \
00148    do{ DDRC |= 0xD0; PORTC |= 0xC0;}while(0);
00149 
00150 /*=== TIMER Interface ===============================================*/
00151 #define HWTMR_PRESCALE  (1)
00152 #define HWTIMER_TICK    ((1.0*HWTMR_PRESCALE)/F_CPU)
00153 #define HWTIMER_TICK_NB (0xFFFFUL)
00154 #define HWTIMER_REG     (TCNT1)
00155 #define TIMER_TICK      (HWTIMER_TICK_NB * HWTIMER_TICK)
00156 #define TIMER_POOL_SIZE (4)
00157 #define TIMER_INIT() \
00158     do{ \
00159         TCCR1B |= (_BV(CS10)); \
00160         TIMSK1 |= _BV(TOIE1); \
00161     }while(0)
00162 #define TIMER_IRQ_vect   TIMER1_OVF_vect
00163 
00164 /*=== DBG interface =================================================*/
00165 # define DBG_PORT PORTA
00166 # define DBG_DDR DDRA
00167 # define DBG_PIN (1<<PA0)
00168 
00169 #endif /* BOARD_RBB_H*/

This documentation for µracoli was generated on Tue Apr 9 2013 by  doxygen 1.7.1