STM32 TIM1输出互补波形

发布者:Xingfu6666最新更新时间:2018-06-29 来源: eefocus关键字:STM32  TIM1  互补波形 手机看文章 扫描二维码
随时随地手机看文章

#include "stm32f10x.h"

/** @addtogroup STM32F10x_StdPeriph_Examples

  * @{

  */

/** @addtogroup TIM_7PWM_Output

  * @{

  */

/* Private typedef -----------------------------------------------------------*/

/* Private define ------------------------------------------------------------*/

/* Private macro -------------------------------------------------------------*/

/* Private variables ---------------------------------------------------------*/

TIM_TimeBaseInitTypeDef  TIM_TimeBaseStructure;

TIM_OCInitTypeDef  TIM_OCInitStructure;

uint16_t TimerPeriod = 0;

uint16_t Channel1Pulse = 0, Channel2Pulse = 0, Channel3Pulse = 0, Channel4Pulse = 0;

/* Private function prototypes -----------------------------------------------*/

void RCC_Configuration(void);

void GPIO_Configuration(void);

/* Private functions ---------------------------------------------------------*/

/**

  * @brief   Main program

  * @param  None

  * @retval None

  */

int main(void)

{

  /*!< At this stage the microcontroller clock setting is already configured,

       this is done through SystemInit() function which is called from startup

       file (startup_stm32f10x_xx.s) before to branch to application main.

       To reconfigure the default setting of SystemInit() function, refer to

       system_stm32f10x.c file

     */    

      

  /* System Clocks Configuration */

  RCC_Configuration();

  /* GPIO Configuration */

  GPIO_Configuration();

  /* TIM1 Configuration ---------------------------------------------------

   Generate 7 PWM signals with 4 different duty cycles:

   TIM1CLK = SystemCoreClock, Prescaler = 0, TIM1 counter clock = SystemCoreClock

   SystemCoreClock is set to 72 MHz for Low-density, Medium-density, High-density

   and Connectivity line devices and to 24 MHz for Low-Density Value line and

   Medium-Density Value line devices

  

   The objective is to generate 7 PWM signal at 17.57 KHz:

     - TIM1_Period = (SystemCoreClock / 17570) - 1

   The channel 1 and channel 1N duty cycle is set to 50%

   The channel 2 and channel 2N duty cycle is set to 37.5%

   The channel 3 and channel 3N duty cycle is set to 25%

   The channel 4 duty cycle is set to 12.5%

   The Timer pulse is calculated as follows:

     - ChannelxPulse = DutyCycle * (TIM1_Period - 1) / 100

  ----------------------------------------------------------------------- */

  /* Compute the value to be set in ARR regiter to generate signal frequency at 17.57 Khz */

  TimerPeriod = (SystemCoreClock / 17570 ) - 1;

  /* Compute CCR1 value to generate a duty cycle at 50% for channel 1 and 1N */

  Channel1Pulse = (uint16_t) (((uint32_t) 5 * (TimerPeriod - 1)) / 10);

  /* Compute CCR2 value to generate a duty cycle at 37.5%  for channel 2 and 2N */

  Channel2Pulse = (uint16_t) (((uint32_t) 375 * (TimerPeriod - 1)) / 1000);

  /* Compute CCR3 value to generate a duty cycle at 25%  for channel 3 and 3N */

  Channel3Pulse = (uint16_t) (((uint32_t) 25 * (TimerPeriod - 1)) / 100);

  /* Compute CCR4 value to generate a duty cycle at 12.5%  for channel 4 */

  Channel4Pulse = (uint16_t) (((uint32_t) 125 * (TimerPeriod- 1)) / 1000);

/*   计算周期 时间的方法 

  TIM_TimeBaseStructure.TIM_Prescaler = 0; //设置用来作为TIM 时钟频率除数的预分频值

  那么TIM时钟就为72M  1/72MHZ=0.01388...us    这就是 系统时间

 

  TimerPeriod = (SystemCoreClock / 17570 ) - 1;   //计算中断周期值

 

  (72MHz/17570) -1=4096.89..   中断周期值

   4096.89*0.01388=56.8US  这就是实际PWM中断周期时间 

  

   1/56.8US=17.6KHZ   1除以除以周期时间 就是频率 大约17.6KHz左右。

   各个 通道值计算结果。。

  Channel1Pulse = 5*(4096-1)/10 =2047       2047*0.01388=28.4US

  Channel2Pulse =  375 *(4096 - 1)) / 1000=1535  1535*0.01388=21.3US

  Channel3Pulse =  25 * (4096 - 1)) / 100=1023   1023*0.01388=14.19US

  Channel4Pulse =  125 *(4096 - 1)) / 1000=511   511*0.01388=7.09US

 

*/

  // //定时器初始化 函数  见库函数 P246页

  /* Time Base configuration */

  TIM_TimeBaseStructure.TIM_Prescaler = 0;  //设置用来作为TIM 时钟频率除数的预分频值

  TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up; //计数器模式  /* 向上计数模式 */

  TIM_TimeBaseStructure.TIM_Period = TimerPeriod; 

  TIM_TimeBaseStructure.TIM_ClockDivision = 0;   //时钟分割  /* 采样分频 */

  TIM_TimeBaseStructure.TIM_RepetitionCounter = 0; //设置 周期 计数值

  TIM_TimeBaseInit(TIM1, &TIM_TimeBaseStructure);

  //TIM1 配置  见 库函数 P294 页

  /* Channel 1, 2,3 and 4 Configuration in PWM mode */

  TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM2;    //脉冲宽度调制模式2

  TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;  //使能输出比较状态

  TIM_OCInitStructure.TIM_OutputNState = TIM_OutputNState_Enable; //使能  互补 输出状态

  TIM_OCInitStructure.TIM_Pulse = Channel1Pulse;  //脉冲 值

  TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_Low; //输出比较极性低

  TIM_OCInitStructure.TIM_OCNPolarity = TIM_OCNPolarity_Low;//互补 输出极性高

  TIM_OCInitStructure.TIM_OCIdleState = TIM_OCIdleState_Set;   //MOE=0 设置 TIM1输出比较空闲状态

  TIM_OCInitStructure.TIM_OCNIdleState = TIM_OCIdleState_Reset;//MOE=0 重置 TIM1输出比较空闲状态

  TIM_OC1Init(TIM1, &TIM_OCInitStructure); //设定好的参数 初始化TIM 

  TIM_OCInitStructure.TIM_Pulse = Channel2Pulse; //脉宽值

  TIM_OC2Init(TIM1, &TIM_OCInitStructure); //设定好的参数 初始化TIM 

  TIM_OCInitStructure.TIM_Pulse = Channel3Pulse; //脉宽值

  TIM_OC3Init(TIM1, &TIM_OCInitStructure); //设定好的参数 初始化TIM 

  TIM_OCInitStructure.TIM_Pulse = Channel4Pulse; //脉宽值

  TIM_OC4Init(TIM1, &TIM_OCInitStructure);//设定好的参数 初始化TIM 

  /* TIM1 counter enable */

  TIM_Cmd(TIM1, ENABLE); //使能 TIM1

  /* TIM1 Main Output Enable */

  TIM_CtrlPWMOutputs(TIM1, ENABLE);    //使能 TIM1 输出

  while (1)

  {}

}

/**

  * @brief  Configures the different system clocks.

  * @param  None

  * @retval None

  */

void RCC_Configuration(void)

{

  /* TIM1, GPIOA, GPIOB, GPIOE and AFIO clocks enable */

  RCC_APB2PeriphClockCmd(RCC_APB2Periph_TIM1 | RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOE|

                         RCC_APB2Periph_GPIOB |RCC_APB2Periph_AFIO, ENABLE);

}

/**

  * @brief  Configure the TIM1 Pins.

  * @param  None

  * @retval None

  */

void GPIO_Configuration(void)

{

  GPIO_InitTypeDef GPIO_InitStructure;

#ifdef STM32F10X_CL

  /* GPIOE Configuration: Channel 1/1N, 2/2N, 3/3N and 4 as alternate function push-pull */

  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9|GPIO_Pin_11|GPIO_Pin_13|GPIO_Pin_14|

                                GPIO_Pin_8|GPIO_Pin_10|GPIO_Pin_12;

  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;

  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;

  GPIO_Init(GPIOE, &GPIO_InitStructure);

  /* TIM1 Full remapping pins */

  GPIO_PinRemapConfig(GPIO_FullRemap_TIM1, ENABLE);

#else

  /* GPIOA Configuration: Channel 1, 2 and 3 as alternate function push-pull */

  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10 | GPIO_Pin_11;

  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;

  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;

  GPIO_Init(GPIOA, &GPIO_InitStructure);

  /* GPIOB Configuration: Channel 1N, 2N and 3N as alternate function push-pull */

  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15;

  GPIO_Init(GPIOB, &GPIO_InitStructure);

#endif

}

#ifdef  USE_FULL_ASSERT

/**

  * @brief  Reports the name of the source file and the source line number

  *         where the assert_param error has occurred.

  * @param  file: pointer to the source file name

  * @param  line: assert_param error line source number

  * @retval None

  */

void assert_failed(uint8_t* file, uint32_t line)

{

  /* User can add his own implementation to report the file name and line number,

     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */

  while (1)

  {}

}

#endif

/**

  * @}

  */

/**

  * @}

  */

/******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/


关键字:STM32  TIM1  互补波形 引用地址:STM32 TIM1输出互补波形

上一篇:Stm32产生两路相位差为180度的pwm
下一篇:基于stm32单片机的可调节pwm输出

推荐阅读最新更新时间:2024-03-16 16:07

浅谈QSPI的特点以及QSPI的三种工作模式
意法半导体STM32F7系列MCU采用高性能的ARM Cortex-M7核心,借助ST的ART Accelerator™和L1缓存,STM32F7微控制器可提供Cortex-M7内核的最高理论性能,而无论代码是从嵌入式闪存还是由外部存储器执行的:1082 CoreMark / 462 DMIPS在216 MHz f CPU。带有新外围设备的智能架构。可利用STM32系列丰富的外设资源来外扩SRAM芯片。STM32F7支持QSPI. 意法半导体MCU STM32F7系列释放了Cortex-M7内核,AXI和多AHB总线矩阵,用于互连内核,外围设备和存储器。具有高达2MB的嵌入式闪存,在某些设备上具有读-写功能。两个用于以太网的通
[单片机]
KeilMDK4.22 编译STM32工程报错:Error: L6218
inking... .\Output\GPIOled.axf: Error: L6218E: Undefined symbol SysTick_CLKSourceConfig (referred from systick.o). .\Output\GPIOled.axf: Error: L6218E: Undefined symbol SysTick_CounterCmd (referred from systick.o). .\Output\GPIOled.axf: Error: L6218E: Undefined symbol SysTick_ITConfig (referred from systick.o). .\Outp
[单片机]
STM32的ADC转换最常见的方式
这里的ADC转换也来使用DMA---这个也是STM32的ADC转换最常见的方式。 第一步是了解STM32的ADC对应的GPIO口如下图不用记住,可以查询,我是将它剪下来粘贴到书本的相应章节! 第二步是配置相应ADC转换的GPIO口这里使用PC0--PC1 static void ADC1_GPIO_Config(void) { GPIO_InitTypeDef GPIO_InitStructure; RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1, ENABLE); //打开DMA1的时钟 RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1 “ RCC_A
[单片机]
通用定时器基本原理讲解
概述: STM32定时器:STM32F10x系列总共最多有8个定时器。 三种STM32定时器区别: 通用定时器功能特点描述: STM3 的通用 TIMx (TIM2、TIM3、TIM4 和 TIM5)定时器功能特点包括: 位于低速的APB1总线上(APB1) 16 位向上、向下、向上/向下(中心对齐)计数模式,自动装载计数器(TIMx_CNT)。 16 位可编程(可以实时修改)预分频器(TIMx_PSC),计数器时钟频率的分频系数 为 1~65535 之间的任意数值。 4 个独立通道(TIMx_CH1~4),这些通道可以用来作为: 输入捕获 输出比较 PWM 生成(边缘或中间对齐模式) 单脉冲模式输出 可使用外部信号(
[单片机]
通用定时器基本原理讲解
STM32串口USART2程序
简介:对控制LED指示灯的IO口进行了初始化,将端口配置为推挽上拉输出,口线速度为50Mhz。PA2,PA2端口复用为串口2的TX,RX。在配置某个口线时,首先应对它所在的端口的时钟进行使能。否则无法配置成功,由于用到了端口B, 因此要对这个端口的时钟。进行使能,同时由于用到复用IO口功能用于配置串口。因此还要使能AFIO(复用功能IO)时钟。 原理图: 程序分析: int main(void) { uint8_t a=0; /* System Clocks Configuration */ RCC_Configuration();//系统时钟设置 /*嵌套向量中断控制器 说明了U
[单片机]
<font color='red'>STM32</font>串口USART2程序
STM32 在keil下进行strtol函数的功能测试
STM32 在keil下进行strtol函数的功能测试 源码: void test_str2num_strtol(void) { int a; printf( rnrn0x1234 = %d, ,strtol( 0x1234 ,NULL,0)); printf( rn1234 = %d, ,strtol( 1234 ,NULL,0)); printf( rnHex:1234 = %d, ,strtol( 1234 ,NULL,16)); printf( rn0 = %d, ,strtol( 0 ,NULL,0)); printf( rn01234 = %d, ,strtol( 01234 ,NULL
[单片机]
stm32+ucos+ucgui 中edit框读取AD值以十进制显示
初始化 case WM_INIT_DIALOG: hEdit0 = WM_GetDialogItem(hDlg, GUI_ID_EDIT0); //创建Dialog hRadio = WM_GetDialogItem(hDlg, GUI_ID_RADIO0); //创建Dialog //EDIT_SetDecMode(hEdit0, 0, 0, 5000, 0, 0); /* Select decimal mode */ EDIT_SetMaxLen(hEdit0,4); //此句要进行设置edit 默认显示3位数 //WM_DisableWindow(hItem); RADIO_SetVa
[单片机]
基于STM32和CPLD的等精度测频设计
在电子工程、资源勘探、仪器仪表等相关应用中,频率测量是电子测量技术中最基本最常见的测量之一,频率计也是工程技术人员必不可少的测量工具。但是,传统的频率测量方法在实际应用中有较大的局限性,基于传统测频原理的频率计的测量精度将随被测信号频率的变化而变化,传统的直接测频法其测量精度将随被测信号频率的降低而降低,测周法的测量精度将随被测信号频率的升高而降低。本文中提出一种基于ARM与CPLD宽频带的数字频率计的设计,以微控器STM32作为核心控制芯片,利用CPLD可编程逻辑器件,实现闸门测量技术的等精度测频。 本设计的技术指标: 测频范围:1Hz~200MHz,分辨率为0.1Hz,测频相对误差百万分之一。 周期测量:信号测量范围与精
[嵌入式]
基于<font color='red'>STM32</font>和CPLD的等精度测频设计
小广播
添点儿料...
无论热点新闻、行业分析、技术干货……
设计资源 培训 开发板 精华推荐

最新单片机文章
何立民专栏 单片机及嵌入式宝典

北京航空航天大学教授,20余年来致力于单片机与嵌入式系统推广工作。

换一换 更多 相关热搜器件
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved