board.h File Reference

Basic definitions for the MSB-A2 board. More...

Detailed Description

Basic definitions for the MSB-A2 board.

Author
unknown

Definition in file board.h.

#include "lpc23xx.h"
#include "mtd.h"
#include "bitarithm.h"
+ Include dependency graph for board.h:

Go to the source code of this file.

LED pin definitions and handlers

#define LED0_PIN   GPIO_PIN(2, 25)
 
#define LED1_PIN   GPIO_PIN(2, 26)
 
#define LED0_MASK   (BIT25)
 
#define LED1_MASK   (BIT26)
 
#define LED0_OFF   (FIO3SET = LED0_MASK)
 
#define LED0_ON   (FIO3CLR = LED0_MASK)
 
#define LED0_TOGGLE   (FIO3PIN ^= LED0_MASK)
 
#define LED1_OFF   (FIO3SET = LED1_MASK)
 
#define LED1_ON   (FIO3CLR = LED1_MASK)
 
#define LED1_TOGGLE   (FIO3PIN ^= LED1_MASK)