The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
AnnaBridge
Date:
Wed Feb 20 20:53:29 2019 +0000
Revision:
172:65be27845400
Parent:
171:3a7713b1edbc
mbed library release version 165

Who changed what in which revision?

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