board_derfa.h

Go to the documentation of this file.
00001 /* Copyright (c) 2009 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_derfa.h,v 1.12 2011/01/09 14:23:18 awachtler Exp $ */
00066 #ifndef BOARD_DERFA_H
00067 #define BOARD_DERFA_H
00068 
00069 #if defined(derfa1)
00070 # define BOARD_TYPE BOARD_DERFA1
00071 # define BOARD_NAME "derfa1"
00072 #elif defined(funkomat)
00073 # define BOARD_TYPE BOARD_FUNKOMAT
00074 # define BOARD_NAME "funkomat"
00075 #elif defined(funkomat_v1)
00076 # define BOARD_TYPE BOARD_FUNKOMAT_V1
00077 # define BOARD_NAME "funkomat v1"
00078 #elif defined(zigduino)
00079 # define BOARD_TYPE BOARD_ZIGDUINO
00080 # define BOARD_NAME "zigduino"
00081 #endif
00082 /*=== Compile time parameters ========================================*/
00083 
00084 /*=== Hardware Components ============================================*/
00085 #define RADIO_TYPE (RADIO_ATMEGA128RFA1_C)
00086 
00088 #define TRX_TSTAMP_REG TCNT1
00089 #if BOARD_TYPE == BOARD_FUNKOMAT
00090 # define LED_PORT      PORTG
00091 # define LED_DDR       DDRG
00092 # define LED_MASK      (0x06)
00093 # define LED_SHIFT     (1)
00094 # define LEDS_INVERSE  (1)
00095 # define LED_NUMBER    (2)
00096 #else
00097 # define LED_NUMBER    (0)
00098 # define NO_LEDS       (1)
00099 #endif
00100 #define NO_KEYS        (1)
00101 
00102 /*=== Host Interface ================================================*/
00103 #if BOARD_TYPE == BOARD_FUNKOMAT_V1 || BOARD_TYPE == BOARD_ZIGDUINO
00104 # define HIF_TYPE    HIF_UART_0
00105 #else
00106 # define HIF_TYPE    HIF_UART_1
00107 #endif
00108 
00109 #define TRX_RESET_LOW()   do { TRXPR &= ~_BV(TRXRST); } while (0)
00110 #define TRX_RESET_HIGH()  do { TRXPR |= _BV(TRXRST); } while (0)
00111 #define TRX_SLPTR_LOW()   do { TRXPR &= ~_BV(SLPTR); } while (0)
00112 #define TRX_SLPTR_HIGH()  do { TRXPR |= _BV(SLPTR); } while (0)
00113 
00114 /*=== TIMER Interface ===============================================*/
00115 #define HWTMR_PRESCALE  (1)
00116 #define HWTIMER_TICK    ((1.0*HWTMR_PRESCALE)/F_CPU)
00117 #define HWTIMER_TICK_NB (0xFFFFUL)
00118 #define HWTIMER_REG     (TCNT1)
00119 #define TIMER_TICK      (HWTIMER_TICK_NB * HWTIMER_TICK)
00120 #define TIMER_POOL_SIZE (4)
00121 #define TIMER_INIT() \
00122     do{ \
00123         TCCR1B |= (_BV(CS10)); \
00124         TIMSK1 |= _BV(TOIE1); \
00125     }while(0)
00126 #define TIMER_IRQ_vect   TIMER1_OVF_vect
00127 
00128 #endif /* BOARD_DERFA_H */

This documentation for µracoli was generated on Wed Feb 2 2011 by  doxygen 1.7.1