forked
targets/TARGET_STM/PeripheralPins.h@170:19eb464bc2be, 2017-08-03 (annotated)
- Committer:
- Kojto
- Date:
- Thu Aug 03 13:13:39 2017 +0100
- Revision:
- 170:19eb464bc2be
- Parent:
- 163:74e0ce7f98e8
This updates the lib to the mbed lib v 148
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
<> | 157:ff67d9f36b67 | 1 | /* mbed Microcontroller Library |
<> | 157:ff67d9f36b67 | 2 | ******************************************************************************* |
<> | 157:ff67d9f36b67 | 3 | * Copyright (c) 2014, STMicroelectronics |
<> | 157:ff67d9f36b67 | 4 | * All rights reserved. |
<> | 157:ff67d9f36b67 | 5 | * |
<> | 157:ff67d9f36b67 | 6 | * Redistribution and use in source and binary forms, with or without |
<> | 157:ff67d9f36b67 | 7 | * modification, are permitted provided that the following conditions are met: |
<> | 157:ff67d9f36b67 | 8 | * |
<> | 157:ff67d9f36b67 | 9 | * 1. Redistributions of source code must retain the above copyright notice, |
<> | 157:ff67d9f36b67 | 10 | * this list of conditions and the following disclaimer. |
<> | 157:ff67d9f36b67 | 11 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
<> | 157:ff67d9f36b67 | 12 | * this list of conditions and the following disclaimer in the documentation |
<> | 157:ff67d9f36b67 | 13 | * and/or other materials provided with the distribution. |
<> | 157:ff67d9f36b67 | 14 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
<> | 157:ff67d9f36b67 | 15 | * may be used to endorse or promote products derived from this software |
<> | 157:ff67d9f36b67 | 16 | * without specific prior written permission. |
<> | 157:ff67d9f36b67 | 17 | * |
<> | 157:ff67d9f36b67 | 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
<> | 157:ff67d9f36b67 | 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
<> | 157:ff67d9f36b67 | 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
<> | 157:ff67d9f36b67 | 21 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
<> | 157:ff67d9f36b67 | 22 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
<> | 157:ff67d9f36b67 | 23 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
<> | 157:ff67d9f36b67 | 24 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
<> | 157:ff67d9f36b67 | 25 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
<> | 157:ff67d9f36b67 | 26 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
<> | 157:ff67d9f36b67 | 27 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
<> | 157:ff67d9f36b67 | 28 | ******************************************************************************* |
<> | 157:ff67d9f36b67 | 29 | */ |
<> | 157:ff67d9f36b67 | 30 | |
<> | 157:ff67d9f36b67 | 31 | #ifndef MBED_PERIPHERALPINS_H |
<> | 157:ff67d9f36b67 | 32 | #define MBED_PERIPHERALPINS_H |
<> | 157:ff67d9f36b67 | 33 | |
<> | 157:ff67d9f36b67 | 34 | #include "pinmap.h" |
<> | 157:ff67d9f36b67 | 35 | #include "PeripheralNames.h" |
<> | 157:ff67d9f36b67 | 36 | |
<> | 157:ff67d9f36b67 | 37 | //*** ADC *** |
<> | 157:ff67d9f36b67 | 38 | #ifdef DEVICE_ANALOGIN |
<> | 157:ff67d9f36b67 | 39 | extern const PinMap PinMap_ADC[]; |
Anna Bridge |
163:74e0ce7f98e8 | 40 | extern const PinMap PinMap_ADC_Internal[]; |
<> | 157:ff67d9f36b67 | 41 | #endif |
<> | 157:ff67d9f36b67 | 42 | |
<> | 157:ff67d9f36b67 | 43 | //*** DAC *** |
<> | 157:ff67d9f36b67 | 44 | #ifdef DEVICE_ANALOGOUT |
<> | 157:ff67d9f36b67 | 45 | extern const PinMap PinMap_DAC[]; |
<> | 157:ff67d9f36b67 | 46 | #endif |
<> | 157:ff67d9f36b67 | 47 | |
<> | 157:ff67d9f36b67 | 48 | //*** I2C *** |
<> | 157:ff67d9f36b67 | 49 | #if DEVICE_I2C |
<> | 157:ff67d9f36b67 | 50 | extern const PinMap PinMap_I2C_SDA[]; |
<> | 157:ff67d9f36b67 | 51 | extern const PinMap PinMap_I2C_SCL[]; |
<> | 157:ff67d9f36b67 | 52 | #endif |
<> | 157:ff67d9f36b67 | 53 | |
<> | 157:ff67d9f36b67 | 54 | //*** PWM *** |
<> | 157:ff67d9f36b67 | 55 | #if DEVICE_PWMOUT |
<> | 157:ff67d9f36b67 | 56 | extern const PinMap PinMap_PWM[]; |
<> | 157:ff67d9f36b67 | 57 | #endif |
<> | 157:ff67d9f36b67 | 58 | |
<> | 157:ff67d9f36b67 | 59 | //*** SERIAL *** |
<> | 157:ff67d9f36b67 | 60 | #ifdef DEVICE_SERIAL |
<> | 157:ff67d9f36b67 | 61 | extern const PinMap PinMap_UART_TX[]; |
<> | 157:ff67d9f36b67 | 62 | extern const PinMap PinMap_UART_RX[]; |
<> | 157:ff67d9f36b67 | 63 | #ifdef DEVICE_SERIAL_FC |
<> | 157:ff67d9f36b67 | 64 | extern const PinMap PinMap_UART_RTS[]; |
<> | 157:ff67d9f36b67 | 65 | extern const PinMap PinMap_UART_CTS[]; |
<> | 157:ff67d9f36b67 | 66 | #endif |
<> | 157:ff67d9f36b67 | 67 | #endif |
<> | 157:ff67d9f36b67 | 68 | |
<> | 157:ff67d9f36b67 | 69 | //*** SPI *** |
<> | 157:ff67d9f36b67 | 70 | #ifdef DEVICE_SPI |
<> | 157:ff67d9f36b67 | 71 | extern const PinMap PinMap_SPI_MOSI[]; |
<> | 157:ff67d9f36b67 | 72 | extern const PinMap PinMap_SPI_MISO[]; |
<> | 157:ff67d9f36b67 | 73 | extern const PinMap PinMap_SPI_SCLK[]; |
<> | 157:ff67d9f36b67 | 74 | extern const PinMap PinMap_SPI_SSEL[]; |
<> | 157:ff67d9f36b67 | 75 | #endif |
<> | 157:ff67d9f36b67 | 76 | |
<> | 157:ff67d9f36b67 | 77 | //*** CAN *** |
<> | 157:ff67d9f36b67 | 78 | #ifdef DEVICE_CAN |
<> | 157:ff67d9f36b67 | 79 | extern const PinMap PinMap_CAN_RD[]; |
<> | 157:ff67d9f36b67 | 80 | extern const PinMap PinMap_CAN_TD[]; |
<> | 157:ff67d9f36b67 | 81 | #endif |
<> | 157:ff67d9f36b67 | 82 | |
<> | 157:ff67d9f36b67 | 83 | #endif |