forked
targets/TARGET_STM/TARGET_STM32F4/pwmout_device.c@170:19eb464bc2be, 2017-08-03 (annotated)
- Committer:
- Kojto
- Date:
- Thu Aug 03 13:13:39 2017 +0100
- Revision:
- 170:19eb464bc2be
- Parent:
- 160:d5399cc887bb
This updates the lib to the mbed lib v 148
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
<> | 160:d5399cc887bb | 1 | /* mbed Microcontroller Library |
<> | 160:d5399cc887bb | 2 | ******************************************************************************* |
<> | 160:d5399cc887bb | 3 | * Copyright (c) 2017, STMicroelectronics |
<> | 160:d5399cc887bb | 4 | * All rights reserved. |
<> | 160:d5399cc887bb | 5 | * |
<> | 160:d5399cc887bb | 6 | * Redistribution and use in source and binary forms, with or without |
<> | 160:d5399cc887bb | 7 | * modification, are permitted provided that the following conditions are met: |
<> | 160:d5399cc887bb | 8 | * |
<> | 160:d5399cc887bb | 9 | * 1. Redistributions of source code must retain the above copyright notice, |
<> | 160:d5399cc887bb | 10 | * this list of conditions and the following disclaimer. |
<> | 160:d5399cc887bb | 11 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
<> | 160:d5399cc887bb | 12 | * this list of conditions and the following disclaimer in the documentation |
<> | 160:d5399cc887bb | 13 | * and/or other materials provided with the distribution. |
<> | 160:d5399cc887bb | 14 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
<> | 160:d5399cc887bb | 15 | * may be used to endorse or promote products derived from this software |
<> | 160:d5399cc887bb | 16 | * without specific prior written permission. |
<> | 160:d5399cc887bb | 17 | * |
<> | 160:d5399cc887bb | 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
<> | 160:d5399cc887bb | 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
<> | 160:d5399cc887bb | 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
<> | 160:d5399cc887bb | 21 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
<> | 160:d5399cc887bb | 22 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
<> | 160:d5399cc887bb | 23 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
<> | 160:d5399cc887bb | 24 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
<> | 160:d5399cc887bb | 25 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
<> | 160:d5399cc887bb | 26 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
<> | 160:d5399cc887bb | 27 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
<> | 160:d5399cc887bb | 28 | ******************************************************************************* |
<> | 160:d5399cc887bb | 29 | */ |
<> | 160:d5399cc887bb | 30 | #include "cmsis.h" |
<> | 160:d5399cc887bb | 31 | #include "pwmout_api.h" |
<> | 160:d5399cc887bb | 32 | #include "pwmout_device.h" |
<> | 160:d5399cc887bb | 33 | |
<> | 160:d5399cc887bb | 34 | #ifdef DEVICE_PWMOUT |
<> | 160:d5399cc887bb | 35 | |
<> | 160:d5399cc887bb | 36 | const pwm_apb_map_t pwm_apb_map_table[] = |
<> | 160:d5399cc887bb | 37 | { |
<> | 160:d5399cc887bb | 38 | #if defined(TIM2_BASE) |
<> | 160:d5399cc887bb | 39 | {PWM_2, PWMOUT_ON_APB1}, |
<> | 160:d5399cc887bb | 40 | #endif |
<> | 160:d5399cc887bb | 41 | #if defined(TIM3_BASE) |
<> | 160:d5399cc887bb | 42 | {PWM_3, PWMOUT_ON_APB1}, |
<> | 160:d5399cc887bb | 43 | #endif |
<> | 160:d5399cc887bb | 44 | #if defined(TIM4_BASE) |
<> | 160:d5399cc887bb | 45 | {PWM_4, PWMOUT_ON_APB1}, |
<> | 160:d5399cc887bb | 46 | #endif |
<> | 160:d5399cc887bb | 47 | #if defined(TIM5_BASE) |
<> | 160:d5399cc887bb | 48 | {PWM_5, PWMOUT_ON_APB1}, |
<> | 160:d5399cc887bb | 49 | #endif |
<> | 160:d5399cc887bb | 50 | #if defined(TIM12_BASE) |
<> | 160:d5399cc887bb | 51 | {PWM_12, PWMOUT_ON_APB1}, |
<> | 160:d5399cc887bb | 52 | #endif |
<> | 160:d5399cc887bb | 53 | #if defined(TIM13_BASE) |
<> | 160:d5399cc887bb | 54 | {PWM_13, PWMOUT_ON_APB1}, |
<> | 160:d5399cc887bb | 55 | #endif |
<> | 160:d5399cc887bb | 56 | #if defined(TIM14_BASE) |
<> | 160:d5399cc887bb | 57 | {PWM_14, PWMOUT_ON_APB1}, |
<> | 160:d5399cc887bb | 58 | #endif |
<> | 160:d5399cc887bb | 59 | #if defined(TIM1_BASE) |
<> | 160:d5399cc887bb | 60 | {PWM_1, PWMOUT_ON_APB2}, |
<> | 160:d5399cc887bb | 61 | #endif |
<> | 160:d5399cc887bb | 62 | #if defined(TIM8_BASE) |
<> | 160:d5399cc887bb | 63 | {PWM_8, PWMOUT_ON_APB2}, |
<> | 160:d5399cc887bb | 64 | #endif |
<> | 160:d5399cc887bb | 65 | #if defined(TIM9_BASE) |
<> | 160:d5399cc887bb | 66 | {PWM_9, PWMOUT_ON_APB2}, |
<> | 160:d5399cc887bb | 67 | #endif |
<> | 160:d5399cc887bb | 68 | #if defined(TIM10_BASE) |
<> | 160:d5399cc887bb | 69 | {PWM_10, PWMOUT_ON_APB2}, |
<> | 160:d5399cc887bb | 70 | #endif |
<> | 160:d5399cc887bb | 71 | #if defined(TIM11_BASE) |
<> | 160:d5399cc887bb | 72 | {PWM_11, PWMOUT_ON_APB2}, |
<> | 160:d5399cc887bb | 73 | #endif |
<> | 160:d5399cc887bb | 74 | {(PWMName) 0, PWMOUT_UNKNOWN} |
<> | 160:d5399cc887bb | 75 | }; |
<> | 160:d5399cc887bb | 76 | |
<> | 160:d5399cc887bb | 77 | #endif // DEVICE_PWMOUT |