added prescaler for 16 bit pwm in LPC1347 target

Fork of mbed-dev by mbed official

Committer:
<>
Date:
Fri Sep 02 15:07:44 2016 +0100
Revision:
144:ef7eb2e8f9f7
Parent:
50:a417edff4437
This updates the lib to the mbed lib v125

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 50:a417edff4437 1 /***************************************************************************//**
mbed_official 50:a417edff4437 2 * @file Modules.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 *
<> 144:ef7eb2e8f9f7 8 * SPDX-License-Identifier: Apache-2.0
mbed_official 50:a417edff4437 9 *
<> 144:ef7eb2e8f9f7 10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
<> 144:ef7eb2e8f9f7 11 * not use this file except in compliance with the License.
<> 144:ef7eb2e8f9f7 12 * You may obtain a copy of the License at
mbed_official 50:a417edff4437 13 *
<> 144:ef7eb2e8f9f7 14 * http://www.apache.org/licenses/LICENSE-2.0
mbed_official 50:a417edff4437 15 *
<> 144:ef7eb2e8f9f7 16 * Unless required by applicable law or agreed to in writing, software
<> 144:ef7eb2e8f9f7 17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
<> 144:ef7eb2e8f9f7 18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 144:ef7eb2e8f9f7 19 * See the License for the specific language governing permissions and
<> 144:ef7eb2e8f9f7 20 * limitations under the License.
mbed_official 50:a417edff4437 21 *
mbed_official 50:a417edff4437 22 ******************************************************************************/
mbed_official 50:a417edff4437 23 #ifndef MBED_MODULES_H
mbed_official 50:a417edff4437 24 #define MBED_MODULES_H
mbed_official 50:a417edff4437 25
mbed_official 50:a417edff4437 26 #define MODULES_SIZE_ANALOGIN 1
mbed_official 50:a417edff4437 27 #define MODULES_SIZE_ANALOGOUT 0
mbed_official 50:a417edff4437 28 #define MODULES_SIZE_GPIO 1
mbed_official 50:a417edff4437 29 #define MODULES_SIZE_SPI 2
mbed_official 50:a417edff4437 30 #define MODULES_SIZE_I2C 1
mbed_official 50:a417edff4437 31 #define MODULES_SIZE_PWMOUT 1
mbed_official 50:a417edff4437 32 #define MODULES_SIZE_SERIAL 3
mbed_official 50:a417edff4437 33 #define TRANSACTION_QUEUE_SIZE_SPI 4
mbed_official 50:a417edff4437 34
mbed_official 50:a417edff4437 35 #endif