EL4121 Embedded System / mbed-os

Dependents:   cobaLCDJoyMotor_Thread odometry_omni_3roda_v3 odometry_omni_3roda_v1 odometry_omni_3roda_v2 ... more

Committer:
be_bryan
Date:
Mon Dec 11 17:54:04 2017 +0000
Revision:
0:b74591d5ab33
motor ++

Who changed what in which revision?

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