MSB-430 common

Shared files and configuration for all MSB-430 boards. More...

Detailed Description

Shared files and configuration for all MSB-430 boards.

Files

file  board_common.h
 Common definitions for all msb-430 based boards.
 

Macros

#define INFOMEM   (0x1000)
 Address of the info memory.
 

Xtimer configuration

#define XTIMER_WIDTH   (16)
 
#define XTIMER_BACKOFF   (40)
 

LED pin definitions and handlers

#define LED0_PIN   GPIO_PIN(4, 7)
 
#define LED_OUT_REG   (P5OUT)
 
#define LED0_MASK   (1 << 7)
 
#define LED0_ON   (LED_OUT_REG &= ~LED0_MASK)
 
#define LED0_OFF   (LED_OUT_REG |= LED0_MASK)
 
#define LED0_TOGGLE   (LED_OUT_REG ^= LED0_MASK)