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