zoukankan      html  css  js  c++  java
  • MSP430:PWM产生

    #define     PWM                      BIT6

    //  Description: This program generates one PWM output on P1.2 or P1.6 using
    //  Timer_A configured for up mode. The value in CCR0, 25-1, defines the PWM
    //  period and the value in CCR1 the PWM duty cycles.
    //  A 50% duty cycle on P1.6.
    //  ACLK = na, SMCLK = MCLK = TACLK = default DCO
    void PWM_Init(void)
    {
       P1DIR |= PWM;                            // P1.2 and P1.3 output
       P1SEL |= PWM;                            // P1.2 and P1.3 TA1/2 options
       CCR0 = 25-1;                             // PWM Period
       CCTL1 = OUTMOD_7;                         // CCR1 reset/set
       CCR1 = 12;                               // CCR1 PWM duty cycle
       TACTL = TASSEL_2 + MC_1;                  // SMCLK, up mode
    }

     

  • 相关阅读:
    0.1.3 set的用法
    JoinPoint
    砝码组合(dfs)
    强大的【环绕通知】
    applicationContext.xml 模板
    各种jar包
    装饰博客(二)添加宠物
    装饰博客(一)添加背景图片
    拖拽功能的实现
    点击之后连接qq
  • 原文地址:https://www.cnblogs.com/wwjdwy/p/3159784.html
Copyright © 2011-2022 走看看