board_ict_11.h

Go to the documentation of this file.
00001 /* Copyright (c) 2009 Karl Fessel, 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_ict_11.h,v 1.6 2011/01/09 14:23:18 awachtler Exp $ */
00082 #if defined(ics230_11)
00083 # define BOARD_NAME "icstick230"
00084 # define BOARD_TYPE  (BOARD_ICS230_11)
00085 #elif defined(icm230_11)
00086 # define BOARD_NAME "icmodule230"
00087 # define BOARD_TYPE (BOARD_ICM230_11)
00088 #endif
00089 
00090 #ifndef BOARD_ICT230_11_H
00091 #define BOARD_ICT230_11_H
00092 
00093 /*=== Compile time parameters ========================================*/
00094 #ifndef DEFAULT_SPI_RATE
00095 # define DEFAULT_SPI_RATE  (SPI_RATE_1_4)
00096 #endif
00097 
00098 /*=== Hardware Components ============================================*/
00099 #define RADIO_TYPE (RADIO_AT86RF230B)    
00101 /*=== TRX pin access macros ==========================================*/
00102 #include "base_rdk230.h"
00103 #define CUSTOM_RESET_TIME_MS (10)       
00105 /*=== LED access macros ==============================================*/
00106 
00107 /* stick settings */
00108 #if BOARD_TYPE == BOARD_ICS230_11
00109 # define LED_PORT      PORTG
00110 # define LED_DDR       DDRG
00111 # define LED_MASK      (0x20)
00112 # define LED_SHIFT     (5)
00113 # define LEDS_INVERSE  (1)
00114 # define LED_NUMBER    (1)
00115 #elif BOARD_TYPE == BOARD_ICM230_11
00116 # define LED_PORT      PORTD
00117 # define LED_DDR       DDRD
00118 # define LED_MASK      (0xc0)
00119 # define LED_SHIFT     (6)
00120 # define LEDS_INVERSE  (1)
00121 # define LED_NUMBER    (2)
00122 #endif
00123 
00124 
00125 /*=== KEY access macros ==============================================*/
00126 #if BOARD_TYPE == BOARD_ICS230_11
00127 # define NO_KEYS (1)
00128 #elif BOARD_TYPE == BOARD_ICM230_11
00129 # define PORT_KEY     PORTD
00130 # define PIN_KEY      PIND
00131 # define DDR_KEY      DDRD
00132 # define MASK_KEY     (0x01)
00133 # define SHIFT_KEY    (0)
00134 # define INVERSE_KEYS (1)
00135 # define PULLUP_KEYS  (1)
00136 #endif
00137 
00138 /*=== Host Interface ================================================*/
00139 #define HIF_TYPE    HIF_UART_1
00140 
00141 
00142 /*=== TIMER Interface ===============================================*/
00143 #define HWTMR_PRESCALE  (1)
00144 #define HWTIMER_TICK    ((1.0*HWTMR_PRESCALE)/F_CPU)
00145 #define HWTIMER_TICK_NB (0xFFFFUL)
00146 #define HWTIMER_REG     (TCNT1)
00147 #define TIMER_TICK      (HWTIMER_TICK_NB * HWTIMER_TICK)
00148 #define TIMER_POOL_SIZE (4)
00149 #define TIMER_INIT() \
00150     do{ \
00151         TCCR1B |= (_BV(CS10)); \
00152         TIMSK1 |= _BV(TOIE1); \
00153     }while(0)
00154 
00155 #define TIMER_IRQ_vect   TIMER1_OVF_vect
00156 
00157 #endif /* BOARD_ICT230_11_H */

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