t
Fork of mbed-dev by
targets/TARGET_Maxim/TARGET_MAX32630/PeripheralPins.h@178:d650f5d4c87a, 2017-11-08 (annotated)
- Committer:
- AnnaBridge
- Date:
- Wed Nov 08 13:50:44 2017 +0000
- Revision:
- 178:d650f5d4c87a
- Parent:
- 157:ff67d9f36b67
This updates the lib to the mbed lib v 155
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
<> | 157:ff67d9f36b67 | 1 | /******************************************************************************* |
<> | 157:ff67d9f36b67 | 2 | * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved. |
<> | 157:ff67d9f36b67 | 3 | * |
<> | 157:ff67d9f36b67 | 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
<> | 157:ff67d9f36b67 | 5 | * copy of this software and associated documentation files (the "Software"), |
<> | 157:ff67d9f36b67 | 6 | * to deal in the Software without restriction, including without limitation |
<> | 157:ff67d9f36b67 | 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
<> | 157:ff67d9f36b67 | 8 | * and/or sell copies of the Software, and to permit persons to whom the |
<> | 157:ff67d9f36b67 | 9 | * Software is furnished to do so, subject to the following conditions: |
<> | 157:ff67d9f36b67 | 10 | * |
<> | 157:ff67d9f36b67 | 11 | * The above copyright notice and this permission notice shall be included |
<> | 157:ff67d9f36b67 | 12 | * in all copies or substantial portions of the Software. |
<> | 157:ff67d9f36b67 | 13 | * |
<> | 157:ff67d9f36b67 | 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
<> | 157:ff67d9f36b67 | 15 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
<> | 157:ff67d9f36b67 | 16 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
<> | 157:ff67d9f36b67 | 17 | * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES |
<> | 157:ff67d9f36b67 | 18 | * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
<> | 157:ff67d9f36b67 | 19 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
<> | 157:ff67d9f36b67 | 20 | * OTHER DEALINGS IN THE SOFTWARE. |
<> | 157:ff67d9f36b67 | 21 | * |
<> | 157:ff67d9f36b67 | 22 | * Except as contained in this notice, the name of Maxim Integrated |
<> | 157:ff67d9f36b67 | 23 | * Products, Inc. shall not be used except as stated in the Maxim Integrated |
<> | 157:ff67d9f36b67 | 24 | * Products, Inc. Branding Policy. |
<> | 157:ff67d9f36b67 | 25 | * |
<> | 157:ff67d9f36b67 | 26 | * The mere transfer of this software does not imply any licenses |
<> | 157:ff67d9f36b67 | 27 | * of trade secrets, proprietary technology, copyrights, patents, |
<> | 157:ff67d9f36b67 | 28 | * trademarks, maskwork rights, or any other form of intellectual |
<> | 157:ff67d9f36b67 | 29 | * property whatsoever. Maxim Integrated Products, Inc. retains all |
<> | 157:ff67d9f36b67 | 30 | * ownership rights. |
<> | 157:ff67d9f36b67 | 31 | ******************************************************************************* |
<> | 157:ff67d9f36b67 | 32 | */ |
<> | 157:ff67d9f36b67 | 33 | |
<> | 157:ff67d9f36b67 | 34 | #ifndef MBED_PERIPHERALPINS_H |
<> | 157:ff67d9f36b67 | 35 | #define MBED_PERIPHERALPINS_H |
<> | 157:ff67d9f36b67 | 36 | |
<> | 157:ff67d9f36b67 | 37 | #include "pinmap.h" |
<> | 157:ff67d9f36b67 | 38 | |
<> | 157:ff67d9f36b67 | 39 | //************I2C*************** |
<> | 157:ff67d9f36b67 | 40 | extern const PinMap PinMap_I2C_SDA[]; |
<> | 157:ff67d9f36b67 | 41 | extern const PinMap PinMap_I2C_SCL[]; |
<> | 157:ff67d9f36b67 | 42 | |
<> | 157:ff67d9f36b67 | 43 | //************UART*************** |
<> | 157:ff67d9f36b67 | 44 | extern const PinMap PinMap_UART_TX[]; |
<> | 157:ff67d9f36b67 | 45 | extern const PinMap PinMap_UART_RX[]; |
<> | 157:ff67d9f36b67 | 46 | extern const PinMap PinMap_UART_CTS[]; |
<> | 157:ff67d9f36b67 | 47 | extern const PinMap PinMap_UART_RTS[]; |
<> | 157:ff67d9f36b67 | 48 | |
<> | 157:ff67d9f36b67 | 49 | //************SPI*************** |
<> | 157:ff67d9f36b67 | 50 | extern const PinMap PinMap_SPI_SCLK[]; |
<> | 157:ff67d9f36b67 | 51 | extern const PinMap PinMap_SPI_MOSI[]; |
<> | 157:ff67d9f36b67 | 52 | extern const PinMap PinMap_SPI_MISO[]; |
<> | 157:ff67d9f36b67 | 53 | extern const PinMap PinMap_SPI_SSEL[]; |
<> | 157:ff67d9f36b67 | 54 | |
<> | 157:ff67d9f36b67 | 55 | //************PWM*************** |
<> | 157:ff67d9f36b67 | 56 | extern const PinMap PinMap_PWM[]; |
<> | 157:ff67d9f36b67 | 57 | |
<> | 157:ff67d9f36b67 | 58 | //************ADC*************** |
<> | 157:ff67d9f36b67 | 59 | extern const PinMap PinMap_ADC[]; |
<> | 157:ff67d9f36b67 | 60 | #endif |
<> | 157:ff67d9f36b67 | 61 |