board.h File Reference

Boards specific drivers and configuration for the Avsextrem board. More...

Detailed Description

Boards specific drivers and configuration for the Avsextrem board.

Author
Heiko Will
Zakaria Kasmi

Definition in file board.h.

#include "lpc23xx.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)