mbed library sources. Supersedes mbed-src.

Fork of mbed-dev by mbed official

Committer:
<>
Date:
Tue Nov 08 17:45:16 2016 +0000
Revision:
150:02e0a0aed4ec
This updates the lib to the mbed lib v129

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 150:02e0a0aed4ec 1 /***************************************************************************//**
<> 150:02e0a0aed4ec 2 * @file PeripheralPins.h
<> 150:02e0a0aed4ec 3 *******************************************************************************
<> 150:02e0a0aed4ec 4 * @section License
<> 150:02e0a0aed4ec 5 * <b>(C) Copyright 2015 Silicon Labs, http://www.silabs.com</b>
<> 150:02e0a0aed4ec 6 *******************************************************************************
<> 150:02e0a0aed4ec 7 *
<> 150:02e0a0aed4ec 8 * SPDX-License-Identifier: Apache-2.0
<> 150:02e0a0aed4ec 9 *
<> 150:02e0a0aed4ec 10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
<> 150:02e0a0aed4ec 11 * not use this file except in compliance with the License.
<> 150:02e0a0aed4ec 12 * You may obtain a copy of the License at
<> 150:02e0a0aed4ec 13 *
<> 150:02e0a0aed4ec 14 * http://www.apache.org/licenses/LICENSE-2.0
<> 150:02e0a0aed4ec 15 *
<> 150:02e0a0aed4ec 16 * Unless required by applicable law or agreed to in writing, software
<> 150:02e0a0aed4ec 17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
<> 150:02e0a0aed4ec 18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 150:02e0a0aed4ec 19 * See the License for the specific language governing permissions and
<> 150:02e0a0aed4ec 20 * limitations under the License.
<> 150:02e0a0aed4ec 21 *
<> 150:02e0a0aed4ec 22 ******************************************************************************/
<> 150:02e0a0aed4ec 23
<> 150:02e0a0aed4ec 24 #ifndef MBED_PERIPHERALPINS_H
<> 150:02e0a0aed4ec 25 #define MBED_PERIPHERALPINS_H
<> 150:02e0a0aed4ec 26
<> 150:02e0a0aed4ec 27 #include "pinmap.h"
<> 150:02e0a0aed4ec 28 #include "PeripheralNames.h"
<> 150:02e0a0aed4ec 29
<> 150:02e0a0aed4ec 30 /************ADC***************/
<> 150:02e0a0aed4ec 31 extern const PinMap PinMap_ADC[];
<> 150:02e0a0aed4ec 32
<> 150:02e0a0aed4ec 33 /************DAC***************/
<> 150:02e0a0aed4ec 34 extern const PinMap PinMap_DAC[];
<> 150:02e0a0aed4ec 35
<> 150:02e0a0aed4ec 36 /************I2C SCL***********/
<> 150:02e0a0aed4ec 37 extern const PinMap PinMap_I2C_SCL[];
<> 150:02e0a0aed4ec 38
<> 150:02e0a0aed4ec 39 /************I2C SDA***********/
<> 150:02e0a0aed4ec 40 extern const PinMap PinMap_I2C_SDA[];
<> 150:02e0a0aed4ec 41
<> 150:02e0a0aed4ec 42 /************PWM***************/
<> 150:02e0a0aed4ec 43 extern const PinMap PinMap_PWM[];
<> 150:02e0a0aed4ec 44
<> 150:02e0a0aed4ec 45 /************SPI***************/
<> 150:02e0a0aed4ec 46 extern const PinMap PinMap_SPI_MOSI[];
<> 150:02e0a0aed4ec 47 extern const PinMap PinMap_SPI_MISO[];
<> 150:02e0a0aed4ec 48 extern const PinMap PinMap_SPI_CLK[];
<> 150:02e0a0aed4ec 49 extern const PinMap PinMap_SPI_CS[];
<> 150:02e0a0aed4ec 50
<> 150:02e0a0aed4ec 51 /************UART**************/
<> 150:02e0a0aed4ec 52 extern const PinMap PinMap_UART_TX[];
<> 150:02e0a0aed4ec 53 extern const PinMap PinMap_UART_RX[];
<> 150:02e0a0aed4ec 54
<> 150:02e0a0aed4ec 55 #endif
<> 150:02e0a0aed4ec 56