The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
bogdanm
Date:
Mon Aug 05 12:28:09 2013 +0300
Revision:
64:e3affc9e7238
Parent:
LPC11U24/PeripheralNames.h@59:0883845fe643
Child:
66:9c8f0e3462fb
New build system structure, new target (LPC1347), bug fixes (I2C read/write errors, LPC11U24 memory map and others)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 44:24d45a770a51 1 /* mbed Microcontroller Library
emilmont 54:71b101360fb9 2 * Copyright (c) 2006-2013 ARM Limited
emilmont 44:24d45a770a51 3 *
emilmont 59:0883845fe643 4 * Licensed under the Apache License, Version 2.0 (the "License");
emilmont 59:0883845fe643 5 * you may not use this file except in compliance with the License.
emilmont 59:0883845fe643 6 * You may obtain a copy of the License at
emilmont 59:0883845fe643 7 *
emilmont 59:0883845fe643 8 * http://www.apache.org/licenses/LICENSE-2.0
emilmont 44:24d45a770a51 9 *
emilmont 59:0883845fe643 10 * Unless required by applicable law or agreed to in writing, software
emilmont 59:0883845fe643 11 * distributed under the License is distributed on an "AS IS" BASIS,
emilmont 59:0883845fe643 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
emilmont 59:0883845fe643 13 * See the License for the specific language governing permissions and
emilmont 59:0883845fe643 14 * limitations under the License.
emilmont 44:24d45a770a51 15 */
emilmont 44:24d45a770a51 16 #ifndef MBED_PERIPHERALNAMES_H
emilmont 44:24d45a770a51 17 #define MBED_PERIPHERALNAMES_H
emilmont 44:24d45a770a51 18
emilmont 44:24d45a770a51 19 #include "cmsis.h"
emilmont 44:24d45a770a51 20
emilmont 44:24d45a770a51 21 #ifdef __cplusplus
emilmont 44:24d45a770a51 22 extern "C" {
emilmont 44:24d45a770a51 23 #endif
emilmont 44:24d45a770a51 24
emilmont 44:24d45a770a51 25 typedef enum {
emilmont 44:24d45a770a51 26 UART_0 = (int)LPC_USART_BASE
emilmont 44:24d45a770a51 27 } UARTName;
emilmont 44:24d45a770a51 28
emilmont 44:24d45a770a51 29 typedef enum {
emilmont 44:24d45a770a51 30 I2C_0 = (int)LPC_I2C_BASE
emilmont 44:24d45a770a51 31 } I2CName;
emilmont 44:24d45a770a51 32
emilmont 44:24d45a770a51 33 typedef enum {
emilmont 44:24d45a770a51 34 ADC0_0 = 0,
emilmont 44:24d45a770a51 35 ADC0_1,
emilmont 44:24d45a770a51 36 ADC0_2,
emilmont 44:24d45a770a51 37 ADC0_3,
emilmont 44:24d45a770a51 38 ADC0_4,
emilmont 44:24d45a770a51 39 ADC0_5,
emilmont 44:24d45a770a51 40 ADC0_6,
emilmont 44:24d45a770a51 41 ADC0_7
emilmont 44:24d45a770a51 42 } ADCName;
emilmont 44:24d45a770a51 43
emilmont 44:24d45a770a51 44 typedef enum {
emilmont 44:24d45a770a51 45 SPI_0 = (int)LPC_SSP0_BASE,
emilmont 44:24d45a770a51 46 SPI_1 = (int)LPC_SSP1_BASE
emilmont 44:24d45a770a51 47 } SPIName;
emilmont 44:24d45a770a51 48
emilmont 44:24d45a770a51 49 typedef enum {
emilmont 44:24d45a770a51 50 PWM_1 = 0,
emilmont 44:24d45a770a51 51 PWM_2,
emilmont 44:24d45a770a51 52 PWM_3,
emilmont 44:24d45a770a51 53 PWM_4,
emilmont 44:24d45a770a51 54 PWM_5,
emilmont 44:24d45a770a51 55 PWM_6,
emilmont 44:24d45a770a51 56 PWM_7,
emilmont 44:24d45a770a51 57 PWM_8,
emilmont 44:24d45a770a51 58 PWM_9,
emilmont 44:24d45a770a51 59 PWM_10,
emilmont 44:24d45a770a51 60 PWM_11
emilmont 44:24d45a770a51 61 } PWMName;
emilmont 44:24d45a770a51 62
emilmont 44:24d45a770a51 63 #define STDIO_UART_TX USBTX
emilmont 44:24d45a770a51 64 #define STDIO_UART_RX USBRX
emilmont 44:24d45a770a51 65 #define STDIO_UART UART_0
emilmont 44:24d45a770a51 66
emilmont 44:24d45a770a51 67 #ifdef __cplusplus
emilmont 44:24d45a770a51 68 }
emilmont 44:24d45a770a51 69 #endif
emilmont 44:24d45a770a51 70
emilmont 44:24d45a770a51 71 #endif