Go to the documentation of this file.
39 #ifndef __PLATFORM_CONF_H__
40 #define __PLATFORM_CONF_H__
47 #define ZOLERTIA_Z1SP 1
51 #define F_CPU 8000000uL // 8MHz by default
55 #define CLOCK_CONF_SECOND 128UL
57 #define BAUD2UBR(baud) ((F_CPU/baud))
62 #define CC_CONF_INLINE inline
65 #define MSP430_MEMCPY_WORKAROUND 1
66 #include "msp430def.h"
71 typedef unsigned long clock_time_t;
72 typedef unsigned long off_t;
75 #define NETSTACK_CONF_RADIO cc2420_driver
83 #define LEDS_PxDIR P4DIR
84 #define LEDS_PxOUT P4OUT
85 #define LEDS_CONF_RED 0x04
86 #define LEDS_CONF_GREEN 0x01
87 #define LEDS_CONF_YELLOW 0x80
90 #define DCOSYNCH_CONF_ENABLED 0
91 #define DCOSYNCH_CONF_PERIOD 30
93 #define ROM_ERASE_UNIT_SIZE 512
94 #define XMEM_ERASE_UNIT_SIZE (64*1024L)
97 #define CFS_CONF_OFFSET_TYPE long
100 #define NODE_ID_XMEM_OFFSET (0 * XMEM_ERASE_UNIT_SIZE)
103 #define EEPROMFS_ADDR_CODEPROP (1 * XMEM_ERASE_UNIT_SIZE)
105 #define CFS_XMEM_CONF_OFFSET (2 * XMEM_ERASE_UNIT_SIZE)
106 #define CFS_XMEM_CONF_SIZE (1 * XMEM_ERASE_UNIT_SIZE)
108 #define CFS_RAM_CONF_SIZE 4096
115 #define SPI_TXBUF UCB0TXBUF
116 #define SPI_RXBUF UCB0RXBUF
119 #define SPI_WAITFOREOTx() while ((UCB0STAT & UCBUSY) != 0)
121 #define SPI_WAITFOREORx() while ((IFG2 & UCB0RXIFG) == 0)
123 #define SPI_WAITFORTxREADY() while ((IFG2 & UCB0TXIFG) == 0)
138 #define SPI_FLASH_ENABLE() ( P4OUT &= ~BV(FLASH_CS) )
139 #define SPI_FLASH_DISABLE() ( P4OUT |= BV(FLASH_CS) )
141 #define SPI_FLASH_HOLD() ( P5OUT &= ~BV(FLASH_HOLD) )
142 #define SPI_FLASH_UNHOLD() ( P5OUT |= BV(FLASH_HOLD) )
149 #define CC2420_CONF_SYMBOL_LOOP_COUNT 1302
152 #define CC2420_FIFOP_PORT(type) P1##type
153 #define CC2420_FIFOP_PIN 2
155 #define CC2420_FIFO_PORT(type) P1##type
156 #define CC2420_FIFO_PIN 3
158 #define CC2420_CCA_PORT(type) P1##type
159 #define CC2420_CCA_PIN 4
161 #define CC2420_SFD_PORT(type) P4##type
162 #define CC2420_SFD_PIN 1
164 #define CC2420_CSN_PORT(type) P3##type
165 #define CC2420_CSN_PIN 0
167 #define CC2420_VREG_PORT(type) P4##type
168 #define CC2420_VREG_PIN 5
170 #define CC2420_RESET_PORT(type) P4##type
171 #define CC2420_RESET_PIN 6
174 #define CC2420_IRQ_VECTOR PORT1_VECTOR
177 #define CC2420_FIFOP_IS_1 (!!(CC2420_FIFOP_PORT(IN) & BV(CC2420_FIFOP_PIN)))
178 #define CC2420_FIFO_IS_1 (!!(CC2420_FIFO_PORT(IN) & BV(CC2420_FIFO_PIN)))
179 #define CC2420_CCA_IS_1 (!!(CC2420_CCA_PORT(IN) & BV(CC2420_CCA_PIN)))
180 #define CC2420_SFD_IS_1 (!!(CC2420_SFD_PORT(IN) & BV(CC2420_SFD_PIN)))
183 #define SET_RESET_INACTIVE() (CC2420_RESET_PORT(OUT) |= BV(CC2420_RESET_PIN))
184 #define SET_RESET_ACTIVE() (CC2420_RESET_PORT(OUT) &= ~BV(CC2420_RESET_PIN))
187 #define SET_VREG_ACTIVE() (CC2420_VREG_PORT(OUT) |= BV(CC2420_VREG_PIN))
188 #define SET_VREG_INACTIVE() (CC2420_VREG_PORT(OUT) &= ~BV(CC2420_VREG_PIN))
191 #define CC2420_FIFOP_INT_INIT() do { \
192 CC2420_FIFOP_PORT(IES) &= ~BV(CC2420_FIFOP_PIN); \
193 CC2420_CLEAR_FIFOP_INT(); \
197 #define CC2420_ENABLE_FIFOP_INT() do {CC2420_FIFOP_PORT(IE) |= BV(CC2420_FIFOP_PIN);} while(0)
198 #define CC2420_DISABLE_FIFOP_INT() do {CC2420_FIFOP_PORT(IE) &= ~BV(CC2420_FIFOP_PIN);} while(0)
199 #define CC2420_CLEAR_FIFOP_INT() do {CC2420_FIFOP_PORT(IFG) &= ~BV(CC2420_FIFOP_PIN);} while(0)
207 #define CC2420_SPI_ENABLE() (CC2420_CSN_PORT(OUT) &= ~BV(CC2420_CSN_PIN))
209 #define CC2420_SPI_DISABLE() (CC2420_CSN_PORT(OUT) |= BV(CC2420_CSN_PIN))
210 #define CC2420_SPI_IS_ENABLED() ((CC2420_CSN_PORT(OUT) & BV(CC2420_CSN_PIN)) != BV(CC2420_CSN_PIN))