board_rdk230.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__rdk230_8h_source.html,v 1.1.1.4 2013/04/09 21:12:00 awachtler Exp $ */
00088 #if defined(rdk230)
00089 # define BOARD_TYPE BOARD_RDK230
00090 # define BOARD_NAME "rdk230"
00091 # define RADIO_TYPE (RADIO_AT86RF230A)
00092 #elif defined(rdk230b)
00093 # define BOARD_TYPE BOARD_RDK230B
00094 # define BOARD_NAME "rdk230b"
00095 # define RADIO_TYPE (RADIO_AT86RF230B)
00096 #elif defined(rdk231)
00097 # define BOARD_TYPE BOARD_RDK231
00098 # define BOARD_NAME "rdk231"
00099 # define RADIO_TYPE (RADIO_AT86RF231)
00100 #elif defined(rdk212)
00101 # define BOARD_TYPE BOARD_RDK212
00102 # define BOARD_NAME "rdk212"
00103 # define RADIO_TYPE (RADIO_AT86RF212)
00104 #elif defined(rdk232)
00105 # define BOARD_TYPE BOARD_RDK232
00106 # define BOARD_NAME "rdk232"
00107 # define RADIO_TYPE (RADIO_AT86RF232)
00108 #elif defined(rdk233)
00109 # define BOARD_TYPE BOARD_RDK233
00110 # define BOARD_NAME "rdk233"
00111 # define RADIO_TYPE (RADIO_AT86RF233)
00112 #endif
00113 
00114 #ifndef BOARD_RDK230_H
00115 #define BOARD_RDK230_H
00116 
00117 
00118 /*=== Compile time parameters ========================================*/
00119 
00120 /*=== radio interface definition =====================================*/
00121 #if BOARD_TYPE == BOARD_RDK230 || BOARD_TYPE == BOARD_RDK230B
00122 # include "base_rdk230.h"
00123 #else
00124 # include "base_rdk2xx.h"
00125 #endif
00126 
00127 /*=== LED access macros ==============================================*/
00128 #define LED_PORT     PORTE
00129 #define LED_DDR      DDRE
00130 #define LED_MASK     (0x1c)
00131 #define LED_SHIFT    (2)
00132 #define LEDS_INVERSE (1)
00133 #define LED_NUMBER   (3)
00134 
00135 /*=== KEY access macros ==============================================*/
00136 #define PORT_KEY     PORTE
00137 #define PIN_KEY      PINE
00138 #define DDR_KEY      DDRE
00139 #define MASK_KEY     (0x20)
00140 #define SHIFT_KEY    (5)
00141 #define INVERSE_KEYS (1)
00142 #define PULLUP_KEYS  (1)
00143 
00144 #define SLEEP_ON_KEY_INIT() do{}while(0)
00145 #define SLEEP_ON_KEY() \
00146         do{\
00147             EIMSK |= _BV(INT5);\
00148             set_sleep_mode(SLEEP_MODE_PWR_DOWN);\
00149             sleep_mode();\
00150             EIMSK &= ~_BV(INT5);\
00151         } while(0)
00152 
00153 #define SLEEP_ON_KEY_vect INT5_vect
00154 
00155 /*=== Host Interface ================================================*/
00156 #define HIF_TYPE (HIF_UART_1)
00157 
00158 /*=== TIMER Interface ===============================================*/
00159 #define HWTMR_PRESCALE  (1)
00160 #define HWTIMER_TICK    ((1.0*HWTMR_PRESCALE)/F_CPU)
00161 #define HWTIMER_TICK_NB (0xFFFFUL)
00162 #define HWTIMER_REG     (TCNT1)
00163 #define TIMER_TICK      (HWTIMER_TICK_NB * HWTIMER_TICK)
00164 #define TIMER_POOL_SIZE (4)
00165 #define TIMER_INIT() \
00166     do{ \
00167         TCCR1B |= (_BV(CS10)); \
00168         TIMSK1 |= _BV(TOIE1); \
00169     }while(0)
00170 #define TIMER_IRQ_vect   TIMER1_OVF_vect
00171 
00172 #endif /* BOARD_RDK230_H*/

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