This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320F28379D: Is it possible to enable both TBPRDHR and CMPAHR at the same time?

Expert 1220 points
Part Number: TMS320F28379D
Other Parts Discussed in Thread: C2000WARE

Hi All,

Is it possible to enable both TBPRDHR and CMPAHR at the same time?

TBPRDHR and CMPAHR are as described in TRM "15.14.1.3 HRPWM Settings",
However, it seems that only TBPRDHR and CMPAHR can be selected in "Edge Mode".
Therefore, as far as TRM is concerned, it is not possible to enable both at the same time.

Best Regards,

Ito

  • Hi Ito,

    Yes, you can enable both TBPRDHR and CMPAHR by using the "both edge mode" and enabling period control. I see that some of the register descriptions are a bit confusing and am working on updating these. 

    Best Regards,

    Allison

  • Hi Allison

    Thank you for your reply.

    I also tried setting Both Edges (BE) but it did not reflect CMPAHR.
    I have the impression that there are other settings that are needed,
    such as whether to use up-down count mode or the AQ module settings.
    If you know the detailed settings for PWM to enable both TBPRDHR and CMPAHR, please let me know.

    Best Regards,

    Ito

  • Hi Ito,

    Let me check to see if we have some existing examples on this that you can use Slight smile

    Best Regards,

    Allison

  • Hi Ito,

    I just put together some code using our existing examples to implement duty control and period control in a highly simplified manner. Only EPWM1 module is used (both channel A and B), CMPxHR values are left constant (able to be changed by the user), and TBPRDHR is very slowly incremented.

    I'd recommend you import an existing example (such as {C2000Ware}\driverlib\f2837xd\examples\cpu1\hrpwm\hrpwm_ex4_duty_updown_sfo) into CCS and then replace the hrpwm_ex4_duty_updown_sfo.c file contents with what I have below. Hope this helps show what settings you should implement!

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    //#############################################################################
    //
    // FILE: hrpwm_simple_duty_and_period_control_updown_sfo.c
    //
    // TITLE: HRPWM DUTY and PERIOD CONTROL (simplified).
    //
    //#############################################################################
    //
    // This is a simplified HRPWM example where HRPWM duty control and
    // HRPWM period control capability are both already set up for you on only
    // one PWM module (EPWM1). This example uses CMPAHR, CMPBHR, and TBPRDHR to show the
    // implementation of HR duty and period modulation together. The user can alter
    // CMPAHR and CMPBHR values during run time in the register viewing window of CCS.
    // the example slowly increments the TBPRDHR value to increase the TBPRDHR value.
    // You can see the outputs of channels EPWM1A and EPWM1B change on an oscilloscope.
    // Increasing CMPxHR values will decrease the duty cycle of channel 'x'.
    // The incrementing of TBPRDHR will lower the frequency by lengthening the period of both channels.
    //
    // Period is incremented by default. To adjust the duty cycle while running the code:
    // 1. Open the Registers window in CCS.
    // 2. Turn on Continuous Refresh using the yellow arrows button.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Best Regards,

    Allison

  • Hi Allison,

    Thank you for your reply.

    I will share this code with my clients.

    Best Regards,

    Ito

  • Ok sounds good, Ito.

    Best,

    Allison