]> git.gir.st - tmk_keyboard.git/blob - tmk_core/tool/mbed/mbed-sdk/libraries/mbed/targets/hal/TARGET_NXP/TARGET_LPC408X/TARGET_LPC4088/PeripheralNames.h
Merge commit '1fe4406f374291ab2e86e95a97341fd9c475fcb8'
[tmk_keyboard.git] / tmk_core / tool / mbed / mbed-sdk / libraries / mbed / targets / hal / TARGET_NXP / TARGET_LPC408X / TARGET_LPC4088 / PeripheralNames.h
1 /* mbed Microcontroller Library
2 * Copyright (c) 2006-2013 ARM Limited
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 #ifndef MBED_PERIPHERALNAMES_H
17 #define MBED_PERIPHERALNAMES_H
18
19 #include "cmsis.h"
20
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24
25 typedef enum {
26 UART_0 = (int)LPC_UART0_BASE,
27 UART_1 = (int)LPC_UART1_BASE,
28 UART_2 = (int)LPC_UART2_BASE,
29 UART_3 = (int)LPC_UART3_BASE,
30 UART_4 = (int)LPC_UART4_BASE
31 } UARTName;
32
33 typedef enum {
34 ADC0_0 = 0,
35 ADC0_1,
36 ADC0_2,
37 ADC0_3,
38 ADC0_4,
39 ADC0_5,
40 ADC0_6,
41 ADC0_7
42 } ADCName;
43
44 typedef enum {
45 DAC_0 = 0
46 } DACName;
47
48 typedef enum {
49 SPI_0 = (int)LPC_SSP0_BASE,
50 SPI_1 = (int)LPC_SSP1_BASE,
51 SPI_2 = (int)LPC_SSP2_BASE
52 } SPIName;
53
54 typedef enum {
55 I2C_0 = (int)LPC_I2C0_BASE,
56 I2C_1 = (int)LPC_I2C1_BASE,
57 I2C_2 = (int)LPC_I2C2_BASE
58 } I2CName;
59
60 typedef enum {
61 PWM0_1 = 1,
62 PWM0_2,
63 PWM0_3,
64 PWM0_4,
65 PWM0_5,
66 PWM0_6,
67 PWM1_1,
68 PWM1_2,
69 PWM1_3,
70 PWM1_4,
71 PWM1_5,
72 PWM1_6
73 } PWMName;
74
75 typedef enum {
76 CAN_1 = (int)LPC_CAN1_BASE,
77 CAN_2 = (int)LPC_CAN2_BASE
78 } CANName;
79
80 #define STDIO_UART_TX USBTX
81 #define STDIO_UART_RX USBRX
82 #define STDIO_UART UART_0
83
84 // Default peripherals
85 #define MBED_SPI0 p5, p6, p7
86 #define MBED_SPI1 p11, p12, p13, p14
87 #define MBED_SPI2 p39, p38, p32, p31
88
89 #define MBED_UART3 p9, p10
90 #define MBED_UART4 p37, p31
91 #define MBED_UARTUSB USBTX, USBRX
92
93 #define MBED_I2C0 p32, p31
94 #define MBED_I2C1 p9, p10
95
96 #define MBED_CAN1 p9, p10
97 #define MBED_CAN2 p34, p33
98
99 #define MBED_ANALOGOUT0 p18
100
101 #define MBED_ANALOGIN0 p15
102 #define MBED_ANALOGIN1 p16
103 #define MBED_ANALOGIN2 p17
104 #define MBED_ANALOGIN3 p18
105 #define MBED_ANALOGIN4 p19
106 #define MBED_ANALOGIN5 p20
107
108 #define MBED_PWMOUT0 p30
109 #define MBED_PWMOUT1 p29
110 #define MBED_PWMOUT2 p28
111 #define MBED_PWMOUT3 p27
112 #define MBED_PWMOUT4 p26
113 #define MBED_PWMOUT5 p25
114
115 #ifdef __cplusplus
116 }
117 #endif
118
119 #endif
Imprint / Impressum