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:
emilmont
Date:
Tue Feb 18 15:02:39 2014 +0000
Revision:
78:ed8466a608b4
Add KL05Z Target
Fix LPC11XX InterruptIn
Fix NUCLEO boards us_ticker
Fix NUCLEO_L152RE AnalogOut

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 78:ed8466a608b4 1 /* mbed Microcontroller Library
emilmont 78:ed8466a608b4 2 * Copyright (c) 2006-2013 ARM Limited
emilmont 78:ed8466a608b4 3 *
emilmont 78:ed8466a608b4 4 * Licensed under the Apache License, Version 2.0 (the "License");
emilmont 78:ed8466a608b4 5 * you may not use this file except in compliance with the License.
emilmont 78:ed8466a608b4 6 * You may obtain a copy of the License at
emilmont 78:ed8466a608b4 7 *
emilmont 78:ed8466a608b4 8 * http://www.apache.org/licenses/LICENSE-2.0
emilmont 78:ed8466a608b4 9 *
emilmont 78:ed8466a608b4 10 * Unless required by applicable law or agreed to in writing, software
emilmont 78:ed8466a608b4 11 * distributed under the License is distributed on an "AS IS" BASIS,
emilmont 78:ed8466a608b4 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
emilmont 78:ed8466a608b4 13 * See the License for the specific language governing permissions and
emilmont 78:ed8466a608b4 14 * limitations under the License.
emilmont 78:ed8466a608b4 15 */
emilmont 78:ed8466a608b4 16
emilmont 78:ed8466a608b4 17 #ifndef MBED_PERIPHERALPINS_H
emilmont 78:ed8466a608b4 18 #define MBED_PERIPHERALPINS_H
emilmont 78:ed8466a608b4 19
emilmont 78:ed8466a608b4 20 #include "pinmap.h"
emilmont 78:ed8466a608b4 21 #include "PeripheralNames.h"
emilmont 78:ed8466a608b4 22
emilmont 78:ed8466a608b4 23 /************RTC***************/
emilmont 78:ed8466a608b4 24 extern const PinMap PinMap_RTC[];
emilmont 78:ed8466a608b4 25
emilmont 78:ed8466a608b4 26 /************ADC***************/
emilmont 78:ed8466a608b4 27 extern const PinMap PinMap_ADC[];
emilmont 78:ed8466a608b4 28
emilmont 78:ed8466a608b4 29 /************DAC***************/
emilmont 78:ed8466a608b4 30 extern const PinMap PinMap_DAC[];
emilmont 78:ed8466a608b4 31
emilmont 78:ed8466a608b4 32 /************I2C***************/
emilmont 78:ed8466a608b4 33 extern const PinMap PinMap_I2C_SDA[];
emilmont 78:ed8466a608b4 34 extern const PinMap PinMap_I2C_SCL[];
emilmont 78:ed8466a608b4 35
emilmont 78:ed8466a608b4 36 /************UART***************/
emilmont 78:ed8466a608b4 37 extern const PinMap PinMap_UART_TX[];
emilmont 78:ed8466a608b4 38 extern const PinMap PinMap_UART_RX[];
emilmont 78:ed8466a608b4 39
emilmont 78:ed8466a608b4 40 /************SPI***************/
emilmont 78:ed8466a608b4 41 extern const PinMap PinMap_SPI_SCLK[];
emilmont 78:ed8466a608b4 42 extern const PinMap PinMap_SPI_MOSI[];
emilmont 78:ed8466a608b4 43 extern const PinMap PinMap_SPI_MISO[];
emilmont 78:ed8466a608b4 44 extern const PinMap PinMap_SPI_SSEL[];
emilmont 78:ed8466a608b4 45
emilmont 78:ed8466a608b4 46 /************PWM***************/
emilmont 78:ed8466a608b4 47 extern const PinMap PinMap_PWM[];
emilmont 78:ed8466a608b4 48
emilmont 78:ed8466a608b4 49 #endif