summaryrefslogtreecommitdiff
path: root/tool/mbed/mbed-sdk/libraries/mbed/targets/hal/TARGET_NXP/TARGET_LPC82X/TARGET_LPC824/PinNames.h
blob: a63498be033ede90f6b9b3daf1bcccc9b9928428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* mbed Microcontroller Library
 * Copyright (c) 2006-2013 ARM Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#ifndef MBED_PINNAMES_H
#define MBED_PINNAMES_H

#include "cmsis.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef enum {
    PIN_INPUT,
    PIN_OUTPUT
} PinDirection;

#define PIN_SHIFT 8

typedef enum {
// LPC824 Pin Names (PIN[11:8] + IOCON offset[7:0])

    P0_0  = ( 0 << PIN_SHIFT) | 0x44,
    P0_1  = ( 1 << PIN_SHIFT) | 0x2C,
    P0_2  = ( 2 << PIN_SHIFT) | 0x18,
    P0_3  = ( 3 << PIN_SHIFT) | 0x14,
    P0_4  = ( 4 << PIN_SHIFT) | 0x10,
    P0_5  = ( 5 << PIN_SHIFT) | 0x0C,
    P0_6  = ( 6 << PIN_SHIFT) | 0x40,
    P0_7  = ( 7 << PIN_SHIFT) | 0x3C,
    P0_8  = ( 8 << PIN_SHIFT) | 0x38,
    P0_9  = ( 9 << PIN_SHIFT) | 0x34,
    P0_10 = (10 << PIN_SHIFT) | 0x20,
    P0_11 = (11 << PIN_SHIFT) | 0x1C,
    P0_12 = (12 << PIN_SHIFT) | 0x08,
    P0_13 = (13 << PIN_SHIFT) | 0x04,
    P0_14 = (14 << PIN_SHIFT) | 0x48,
    P0_15 = (15 << PIN_SHIFT) | 0x28,
    P0_16 = (16 << PIN_SHIFT) | 0x24,
    P0_17 = (17 << PIN_SHIFT) | 0x00,
    P0_18 = (18 << PIN_SHIFT) | 0x78,
    P0_19 = (19 << PIN_SHIFT) | 0x74,
    P0_20 = (20 << PIN_SHIFT) | 0x70,
    P0_21 = (21 << PIN_SHIFT) | 0x6C,
    P0_22 = (22 << PIN_SHIFT) | 0x68,
    P0_23 = (23 << PIN_SHIFT) | 0x64,
    P0_24 = (24 << PIN_SHIFT) | 0x60,
    P0_25 = (25 << PIN_SHIFT) | 0x5C,
    P0_26 = (26 << PIN_SHIFT) | 0x58,
    P0_27 = (27 << PIN_SHIFT) | 0x54,
    P0_28 = (28 << PIN_SHIFT) | 0x50,
    
    D0 = P0_0,
    D1 = P0_4,
    D2 = P0_19,
    D3 = P0_12, // LED_RED
    D4 = P0_18,
    D5 = P0_28,
    D6 = P0_16, // LED_GREEN
    D7 = P0_17,
    D8 = P0_13,
    D9 = P0_27, // LED_BLUE
    D10 = P0_15,
    D11 = P0_26,
    D12 = P0_25,
    D13 = P0_24,
    D14 = P0_11,
    D15 = P0_10,
    
    A0 = P0_6,
    A1 = P0_14,
    A2 = P0_23,
    A3 = P0_22,
    A4 = P0_21,
    A5 = P0_20,
    
    // LPC824-MAX board
    LED_RED = P0_12,
    LED_GREEN = P0_16,
    LED_BLUE = P0_27,
    
    // mbed original LED naming
    LED1 = LED_RED,
    LED2 = LED_GREEN,
    LED3 = LED_BLUE,
    LED4 = LED_BLUE,
    
    // Serial to USB pins
    USBTX = P0_7,
    USBRX = P0_18,
    
    // I2C pins
    SCL = P0_10,
    SDA = P0_11,
    I2C_SCL = P0_10,
    I2C_SDA = P0_11,
    
    // Not connected
    NC = (int)0xFFFFFFFF,
} PinName;

typedef enum {
    PullUp = 2,
    PullDown = 1,
    PullNone = 0,
    Repeater = 3,
    OpenDrain = 4,
    PullDefault = PullDown
} PinMode;

#define STDIO_UART_TX     USBTX
#define STDIO_UART_RX     USBRX

typedef struct {
    unsigned char n;
    unsigned char offset;
} SWM_Map;

#ifdef __cplusplus
}
#endif

#endif