Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more
targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/PeripheralPins.h@154:37f96f9d4de2, 2017-01-04 (annotated)
- Committer:
- <>
- Date:
- Wed Jan 04 16:58:05 2017 +0000
- Revision:
- 154:37f96f9d4de2
- Child:
- 188:bcfe06ba3d64
This updates the lib to the mbed lib v133
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| <> | 154:37f96f9d4de2 | 1 | /* mbed Microcontroller Library |
| <> | 154:37f96f9d4de2 | 2 | * Copyright (c) 2006-2013 ARM Limited |
| <> | 154:37f96f9d4de2 | 3 | * |
| <> | 154:37f96f9d4de2 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| <> | 154:37f96f9d4de2 | 5 | * you may not use this file except in compliance with the License. |
| <> | 154:37f96f9d4de2 | 6 | * You may obtain a copy of the License at |
| <> | 154:37f96f9d4de2 | 7 | * |
| <> | 154:37f96f9d4de2 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| <> | 154:37f96f9d4de2 | 9 | * |
| <> | 154:37f96f9d4de2 | 10 | * Unless required by applicable law or agreed to in writing, software |
| <> | 154:37f96f9d4de2 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| <> | 154:37f96f9d4de2 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| <> | 154:37f96f9d4de2 | 13 | * See the License for the specific language governing permissions and |
| <> | 154:37f96f9d4de2 | 14 | * limitations under the License. |
| <> | 154:37f96f9d4de2 | 15 | */ |
| <> | 154:37f96f9d4de2 | 16 | |
| <> | 154:37f96f9d4de2 | 17 | #ifndef MBED_PERIPHERALPINS_H |
| <> | 154:37f96f9d4de2 | 18 | #define MBED_PERIPHERALPINS_H |
| <> | 154:37f96f9d4de2 | 19 | |
| <> | 154:37f96f9d4de2 | 20 | #include "pinmap.h" |
| <> | 154:37f96f9d4de2 | 21 | #include "PeripheralNames.h" |
| <> | 154:37f96f9d4de2 | 22 | |
| <> | 154:37f96f9d4de2 | 23 | /************RTC***************/ |
| <> | 154:37f96f9d4de2 | 24 | extern const PinMap PinMap_RTC[]; |
| <> | 154:37f96f9d4de2 | 25 | |
| <> | 154:37f96f9d4de2 | 26 | /************ADC***************/ |
| <> | 154:37f96f9d4de2 | 27 | extern const PinMap PinMap_ADC[]; |
| <> | 154:37f96f9d4de2 | 28 | |
| <> | 154:37f96f9d4de2 | 29 | /************DAC***************/ |
| <> | 154:37f96f9d4de2 | 30 | extern const PinMap PinMap_DAC[]; |
| <> | 154:37f96f9d4de2 | 31 | |
| <> | 154:37f96f9d4de2 | 32 | /************I2C***************/ |
| <> | 154:37f96f9d4de2 | 33 | extern const PinMap PinMap_I2C_SDA[]; |
| <> | 154:37f96f9d4de2 | 34 | extern const PinMap PinMap_I2C_SCL[]; |
| <> | 154:37f96f9d4de2 | 35 | |
| <> | 154:37f96f9d4de2 | 36 | /************UART***************/ |
| <> | 154:37f96f9d4de2 | 37 | extern const PinMap PinMap_UART_TX[]; |
| <> | 154:37f96f9d4de2 | 38 | extern const PinMap PinMap_UART_RX[]; |
| <> | 154:37f96f9d4de2 | 39 | extern const PinMap PinMap_UART_CTS[]; |
| <> | 154:37f96f9d4de2 | 40 | extern const PinMap PinMap_UART_RTS[]; |
| <> | 154:37f96f9d4de2 | 41 | /************SPI***************/ |
| <> | 154:37f96f9d4de2 | 42 | extern const PinMap PinMap_SPI_SCLK[]; |
| <> | 154:37f96f9d4de2 | 43 | extern const PinMap PinMap_SPI_MOSI[]; |
| <> | 154:37f96f9d4de2 | 44 | extern const PinMap PinMap_SPI_MISO[]; |
| <> | 154:37f96f9d4de2 | 45 | extern const PinMap PinMap_SPI_SSEL[]; |
| <> | 154:37f96f9d4de2 | 46 | |
| <> | 154:37f96f9d4de2 | 47 | /************PWM***************/ |
| <> | 154:37f96f9d4de2 | 48 | extern const PinMap PinMap_PWM[]; |
| <> | 154:37f96f9d4de2 | 49 | |
| <> | 154:37f96f9d4de2 | 50 | #endif |


