mbed library sources. Supersedes mbed-src.

Fork of mbed-dev by mbed official

Committer:
<>
Date:
Tue Nov 08 17:45:16 2016 +0000
Revision:
151:02e0a0aed4ec
This updates the lib to the mbed lib v129

Who changed what in which revision?

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