Go to the documentation of this file.
40 #ifndef __PLATFORM_CONF_H__
41 #define __PLATFORM_CONF_H__
50 #define PLATFORM_HAS_LEDS 1
51 #define PLATFORM_HAS_BUTTON 1
53 #ifdef __IAR_SYSTEMS_ICC__
54 #define __MSP430F1611__ 1
56 #define CC_CONF_INLINE
57 #define BV(x) (1 << x)
59 #define CC_CONF_INLINE inline
60 #define MSP430_MEMCPY_WORKAROUND 1
65 #define F_CPU 3900000uL
68 #define CLOCK_CONF_SECOND 128UL
70 #define BAUD2UBR(baud) ((F_CPU/baud))
76 #include "msp430def.h"
81 typedef unsigned long clock_time_t;
82 typedef unsigned long off_t;
85 #define NETSTACK_CONF_RADIO cc2420_driver
88 #define LEDS_PxDIR P5DIR
89 #define LEDS_PxOUT P5OUT
90 #define LEDS_CONF_RED 0x10
91 #define LEDS_CONF_GREEN 0x20
92 #define LEDS_CONF_YELLOW 0x40
95 #ifndef DCOSYNCH_CONF_ENABLED
96 #define DCOSYNCH_CONF_ENABLED 1
98 #ifndef DCOSYNCH_CONF_PERIOD
99 #define DCOSYNCH_CONF_PERIOD 30
102 #define ROM_ERASE_UNIT_SIZE 512
103 #define XMEM_ERASE_UNIT_SIZE (64*1024L)
106 #define CFS_CONF_OFFSET_TYPE long
110 #define NODE_ID_XMEM_OFFSET (0 * XMEM_ERASE_UNIT_SIZE)
113 #define EEPROMFS_ADDR_CODEPROP (1 * XMEM_ERASE_UNIT_SIZE)
115 #define CFS_XMEM_CONF_OFFSET (2 * XMEM_ERASE_UNIT_SIZE)
116 #define CFS_XMEM_CONF_SIZE (1 * XMEM_ERASE_UNIT_SIZE)
118 #define CFS_RAM_CONF_SIZE 4096
125 #define SPI_TXBUF U0TXBUF
126 #define SPI_RXBUF U0RXBUF
129 #define SPI_WAITFOREOTx() while ((U0TCTL & TXEPT) == 0)
131 #define SPI_WAITFOREORx() while ((IFG1 & URXIFG0) == 0)
133 #define SPI_WAITFORTxREADY() while ((IFG1 & UTXIFG0) == 0)
149 #define SPI_FLASH_ENABLE() ( P4OUT &= ~BV(FLASH_CS) )
150 #define SPI_FLASH_DISABLE() ( P4OUT |= BV(FLASH_CS) )
152 #define SPI_FLASH_HOLD() ( P4OUT &= ~BV(FLASH_HOLD) )
153 #define SPI_FLASH_UNHOLD() ( P4OUT |= BV(FLASH_HOLD) )
159 #define CC2420_CONF_SYMBOL_LOOP_COUNT 800
162 #define CC2420_FIFOP_PORT(type) P1##type
163 #define CC2420_FIFOP_PIN 0
165 #define CC2420_FIFO_PORT(type) P1##type
166 #define CC2420_FIFO_PIN 3
168 #define CC2420_CCA_PORT(type) P1##type
169 #define CC2420_CCA_PIN 4
171 #define CC2420_SFD_PORT(type) P4##type
172 #define CC2420_SFD_PIN 1
174 #define CC2420_CSN_PORT(type) P4##type
175 #define CC2420_CSN_PIN 2
177 #define CC2420_VREG_PORT(type) P4##type
178 #define CC2420_VREG_PIN 5
180 #define CC2420_RESET_PORT(type) P4##type
181 #define CC2420_RESET_PIN 6
183 #define CC2420_IRQ_VECTOR PORT1_VECTOR
186 #define CC2420_FIFOP_IS_1 (!!(CC2420_FIFOP_PORT(IN) & BV(CC2420_FIFOP_PIN)))
187 #define CC2420_FIFO_IS_1 (!!(CC2420_FIFO_PORT(IN) & BV(CC2420_FIFO_PIN)))
188 #define CC2420_CCA_IS_1 (!!(CC2420_CCA_PORT(IN) & BV(CC2420_CCA_PIN)))
189 #define CC2420_SFD_IS_1 (!!(CC2420_SFD_PORT(IN) & BV(CC2420_SFD_PIN)))
192 #define SET_RESET_INACTIVE() (CC2420_RESET_PORT(OUT) |= BV(CC2420_RESET_PIN))
193 #define SET_RESET_ACTIVE() (CC2420_RESET_PORT(OUT) &= ~BV(CC2420_RESET_PIN))
196 #define SET_VREG_ACTIVE() (CC2420_VREG_PORT(OUT) |= BV(CC2420_VREG_PIN))
197 #define SET_VREG_INACTIVE() (CC2420_VREG_PORT(OUT) &= ~BV(CC2420_VREG_PIN))
200 #define CC2420_FIFOP_INT_INIT() do { \
201 CC2420_FIFOP_PORT(IES) &= ~BV(CC2420_FIFOP_PIN); \
202 CC2420_CLEAR_FIFOP_INT(); \
206 #define CC2420_ENABLE_FIFOP_INT() do {CC2420_FIFOP_PORT(IE) |= BV(CC2420_FIFOP_PIN);} while(0)
207 #define CC2420_DISABLE_FIFOP_INT() do {CC2420_FIFOP_PORT(IE) &= ~BV(CC2420_FIFOP_PIN);} while(0)
208 #define CC2420_CLEAR_FIFOP_INT() do {CC2420_FIFOP_PORT(IFG) &= ~BV(CC2420_FIFOP_PIN);} while(0)
216 #define CC2420_SPI_ENABLE() (CC2420_CSN_PORT(OUT) &= ~BV(CC2420_CSN_PIN))
218 #define CC2420_SPI_DISABLE() (CC2420_CSN_PORT(OUT) |= BV(CC2420_CSN_PIN))
219 #define CC2420_SPI_IS_ENABLED() ((CC2420_CSN_PORT(OUT) & BV(CC2420_CSN_PIN)) != BV(CC2420_CSN_PIN))