mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
AnnaBridge
Date:
Fri Feb 16 16:09:33 2018 +0000
Revision:
181:57724642e740
Parent:
targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/api/PeripheralPins.h@170:19eb464bc2be
Child:
189:f392fc9709a3
mbed-dev library. Release version 159.

Who changed what in which revision?

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