Morpheus / target-freescale-ksdk

Fork of target-freescale-ksdk by -deleted-

Committer:
screamer
Date:
Wed Mar 23 21:26:50 2016 +0000
Revision:
0:e4d670b91a9a
Initial revision

Who changed what in which revision?

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