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