board.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013 Zakaria Kasmi <zkasmi@inf.fu-berlin.de>
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  *
8  */
9 
10 
23 #ifndef BOARD_H
24 #define BOARD_H
25 
26 #include "lpc23xx.h"
27 #include "bitarithm.h"
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
37 #define LED0_PIN GPIO_PIN(2, 25)
38 #define LED1_PIN GPIO_PIN(2, 26)
39 
40 #define LED0_MASK (BIT25)
41 #define LED1_MASK (BIT26)
42 
43 #define LED0_OFF (FIO3SET = LED0_MASK)
44 #define LED0_ON (FIO3CLR = LED0_MASK)
45 #define LED0_TOGGLE (FIO3PIN ^= LED0_MASK)
46 
47 #define LED1_OFF (FIO3SET = LED1_MASK)
48 #define LED1_ON (FIO3CLR = LED1_MASK)
49 #define LED1_TOGGLE (FIO3PIN ^= LED1_MASK)
50 
52 #ifdef __cplusplus
53 }
54 #endif
55 
57 #endif /* BOARD_H */
bitarithm.h
Helper functions for bit arithmetic.