added prescaler for 16 bit pwm in LPC1347 target

Fork of mbed-dev by mbed official

Committer:
mbed_official
Date:
Fri Jan 15 07:45:16 2016 +0000
Revision:
50:a417edff4437
Child:
144:ef7eb2e8f9f7
Synchronized with git revision 6010f32619bfcbb01cc73747d4ff9040863482d9

Full URL: https://github.com/mbedmicro/mbed/commit/6010f32619bfcbb01cc73747d4ff9040863482d9/

Remove doubling of buffer size in realiseEndpoint()

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 50:a417edff4437 1 /***************************************************************************//**
mbed_official 50:a417edff4437 2 * @file PeripheralPins.h
mbed_official 50:a417edff4437 3 *******************************************************************************
mbed_official 50:a417edff4437 4 * @section License
mbed_official 50:a417edff4437 5 * <b>(C) Copyright 2015 Silicon Labs, http://www.silabs.com</b>
mbed_official 50:a417edff4437 6 *******************************************************************************
mbed_official 50:a417edff4437 7 *
mbed_official 50:a417edff4437 8 * Permission is granted to anyone to use this software for any purpose,
mbed_official 50:a417edff4437 9 * including commercial applications, and to alter it and redistribute it
mbed_official 50:a417edff4437 10 * freely, subject to the following restrictions:
mbed_official 50:a417edff4437 11 *
mbed_official 50:a417edff4437 12 * 1. The origin of this software must not be misrepresented; you must not
mbed_official 50:a417edff4437 13 * claim that you wrote the original software.
mbed_official 50:a417edff4437 14 * 2. Altered source versions must be plainly marked as such, and must not be
mbed_official 50:a417edff4437 15 * misrepresented as being the original software.
mbed_official 50:a417edff4437 16 * 3. This notice may not be removed or altered from any source distribution.
mbed_official 50:a417edff4437 17 *
mbed_official 50:a417edff4437 18 * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Labs has no
mbed_official 50:a417edff4437 19 * obligation to support this Software. Silicon Labs is providing the
mbed_official 50:a417edff4437 20 * Software "AS IS", with no express or implied warranties of any kind,
mbed_official 50:a417edff4437 21 * including, but not limited to, any implied warranties of merchantability
mbed_official 50:a417edff4437 22 * or fitness for any particular purpose or warranties against infringement
mbed_official 50:a417edff4437 23 * of any proprietary rights of a third party.
mbed_official 50:a417edff4437 24 *
mbed_official 50:a417edff4437 25 * Silicon Labs will not be liable for any consequential, incidental, or
mbed_official 50:a417edff4437 26 * special damages, or any other relief, or for any claim by any third party,
mbed_official 50:a417edff4437 27 * arising from your use of this Software.
mbed_official 50:a417edff4437 28 *
mbed_official 50:a417edff4437 29 ******************************************************************************/
mbed_official 50:a417edff4437 30
mbed_official 50:a417edff4437 31 #ifndef MBED_PERIPHERALPINS_H
mbed_official 50:a417edff4437 32 #define MBED_PERIPHERALPINS_H
mbed_official 50:a417edff4437 33
mbed_official 50:a417edff4437 34 #include "pinmap.h"
mbed_official 50:a417edff4437 35 #include "PeripheralNames.h"
mbed_official 50:a417edff4437 36
mbed_official 50:a417edff4437 37 /************ADC***************/
mbed_official 50:a417edff4437 38 extern const PinMap PinMap_ADC[];
mbed_official 50:a417edff4437 39
mbed_official 50:a417edff4437 40 /************I2C SCL***********/
mbed_official 50:a417edff4437 41 extern const PinMap PinMap_I2C_SCL[];
mbed_official 50:a417edff4437 42
mbed_official 50:a417edff4437 43 /************I2C SDA***********/
mbed_official 50:a417edff4437 44 extern const PinMap PinMap_I2C_SDA[];
mbed_official 50:a417edff4437 45
mbed_official 50:a417edff4437 46 /************PWM***************/
mbed_official 50:a417edff4437 47 extern const PinMap PinMap_PWM[];
mbed_official 50:a417edff4437 48
mbed_official 50:a417edff4437 49 /************SPI***************/
mbed_official 50:a417edff4437 50 extern const PinMap PinMap_SPI_MOSI[];
mbed_official 50:a417edff4437 51 extern const PinMap PinMap_SPI_MISO[];
mbed_official 50:a417edff4437 52 extern const PinMap PinMap_SPI_CLK[];
mbed_official 50:a417edff4437 53 extern const PinMap PinMap_SPI_CS[];
mbed_official 50:a417edff4437 54
mbed_official 50:a417edff4437 55 /************UART**************/
mbed_official 50:a417edff4437 56 extern const PinMap PinMap_UART_TX[];
mbed_official 50:a417edff4437 57 extern const PinMap PinMap_UART_RX[];
mbed_official 50:a417edff4437 58
mbed_official 50:a417edff4437 59 #endif
mbed_official 50:a417edff4437 60