mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Fri Aug 12 13:04:35 2016 +0200
Revision:
123:b0220dba8be7
Parent:
120:7c328cabac7e
Release 123 of the mbed library

Changes:
- new targets: nucleo_f207zg, beetle, nrf51_dk, hexiwear,
nuvoton nuc472, vk rz a1h
- ST - fix timer interrupt handler, sleep api fix
- NXP - lpc15xx us ticker fix
- Nordic - analogin fixes, LF clock init addition, enable i2c async

Who changed what in which revision?

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