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