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.
Dear All,
I am using TMS320F28377D for my inverter application. I have configured ePWM6A and ePWM6B as High resolution. I am getting very precise result on ePWM6A. EPWM6B is configured as same as A(with necessary changes) and getting precise frequency and duty, But I am getting jitter on ePWMB. That jitter length is same as period that is added to get high resolution. For e.g., 4.5nS for 1011kHz
EPwm6Regs.HRCNFG.bit.EDGMODE = 2; // MEP control on falling edge
EPwm6Regs.HRCNFG.bit.EDGMODEB = 1; // MEP control on rising edge
EPwm6Regs.HRCNFG.bit.CTLMODE = 0; // CMPAHR and TBPRDHR HR control
EPwm6Regs.HRCNFG.bit.CTLMODEB = 0; // CMPAHR and TBPRDHR HR control
EPwm6Regs.HRCNFG.bit.HRLOAD = 1; // load on CTR = TBPRD
EPwm6Regs.HRCNFG.bit.HRLOADB = 1; // load on CTR = TBPRD
EPwm6Regs.HRMSTEP.bit.HRMSTEP = 28 ; // 5ns/180ps = 27.77
I didn't get any problem if I use ePWM7A instead of ePWM6B for same application.
why this is happening?
Thanks and Regards,
Maulik Timbadiya
Hi,
"System clock and PWM clock both working at 200MHz."
Maximum PWM clock is only 100MHz. It is /2 of the System clock at 200MHz.
I've a following questions/comments-
- I do not see anything wrong in the config.
- Are you using SFO for calibration? I also see that AutoConv bit is set to Zero.
- Can you call SFO and also enable Autoconv?
- Currently you seem to set Deadband in active high complimentary mode (EPwm6Regs.DBCTL.bit.POLSEL = DB_ACTV_HIC; )
- For testing - can you disable deadband completely and let me know if you still see jitter
- You can also disable (EPwm6Regs.HRPCTL.bit.HRPE = 0) and check.
I'm just trying narrow down the problem for debug.
-Bharathi.
Dear Bharathi,
Thank you for your suggestion and comment. I have taken trial based on your suggestion and concluded below point,
1. If I have disable HRPE bit then there is no meaning of high resolution. Jitter is removed in this case. But, I can not get frequency as programmed. For example, getting 1020kHz instead of 1011kHz.
2. Jitter is only appear in case of when high resolution period needs to add. For example, on same program jitter is not appear when 1000kHz frequency is programmed. Because of CMPAHR/CMPBHR becomes 0. but when I need to load CMPAHR/CMPBHR with certain value at that time only jitter appear.
3. In following code jitter appear on both ePWMA and ePWMB.
Changes :
1. Now PWM module is running on 100MHz.
2. I have turned on auto conversion.
3. SFO function is on continues calling.
4. Dead band module is completely bypassed.
New code based on your suggestion:
EALLOW;
CpuSysRegs.PCLKCR0.bit.TBCLKSYNC = 0;
EDIS;
EPwm6Regs.TBCTL.bit.CTRMODE = 0;// Count up
EPwm6Regs.TBPRD = 97;
EPwm6Regs.TBPRDHR = 59648;
EPwm6Regs.TBPHS.bit.TBPHS = 0x0000; // Phase is 0
EPwm6Regs.TBCTR = 0x0000; // Clear counter
EPwm6Regs.TBCTL.bit.FREE_SOFT = 3;
EPwm6Regs.TBCTL.bit.PRDLD = 0;
EPwm6Regs.TBCTL.bit.CLKDIV = TB_DIV1;
EPwm6Regs.TBCTL.bit.HSPCLKDIV = TB_DIV1;
EPwm6Regs.TBCTL.bit.SWFSYNC = 0;
EPwm6Regs.TBCTL.bit.SYNCOSEL = 1;
EPwm6Regs.TBCTL.bit.PRDLD = 0;
EPwm6Regs.TBCTL.bit.PHSEN = TB_DISABLE;
// Setup TBCTL2
EPwm6Regs.TBCTL2.bit.SYNCOSELX = 0;
EPwm6Regs.TBCTL2.bit.PRDLDSYNC = 0;
// Setup shadow register load on ZERO
EPwm6Regs.CMPCTL.bit.SHDWAMODE = CC_SHADOW;
EPwm6Regs.CMPCTL.bit.SHDWBMODE = CC_SHADOW;
EPwm6Regs.CMPCTL.bit.LOADAMODE = CC_CTR_ZERO;
EPwm6Regs.CMPCTL.bit.LOADBMODE = CC_CTR_ZERO;
// Set Compare values
EPwm6Regs.CMPA.bit.CMPA = 49;
EPwm6Regs.CMPA.bit.CMPAHR = 6400;
EPwm6Regs.CMPB.bit.CMPB = 49;
EPwm6Regs.CMPB.bit.CMPBHR = 6400;
// Set actions
EPwm6Regs.AQCTLA.bit.ZRO = AQ_SET; // Set PWM1A on Zero
EPwm6Regs.AQCTLA.bit.CAU = AQ_CLEAR; // Clear PWM1A on event A, up count
EPwm6Regs.AQCTLB.bit.ZRO = AQ_SET;
EPwm6Regs.AQCTLB.bit.CBU = AQ_CLEAR;
EPwm6Regs.AQCSFRC.bit.CSFA = 00;
EPwm6Regs.AQCSFRC.bit.CSFB = 00;
EPwm6Regs.DBCTL.bit.IN_MODE = DBA_RED_DBB_FED;
EPwm6Regs.DBCTL.bit.POLSEL = DB_ACTV_HIC;
EPwm6Regs.DBCTL.bit.DEDB_MODE = 0;
EPwm6Regs.DBCTL.bit.OUT_MODE = DB_DISABLE;
EPwm6Regs.DBCTL.bit.HALFCYCLE = 0;
EPwm6Regs.DBRED = 32;
EPwm6Regs.DBFED = 32;
/////////////////////High Resolution PWM//////////////
EALLOW;
EPwm6Regs.HRCNFG.all = 0x0;
EPwm6Regs.HRCNFG.bit.EDGMODE = 2;
EPwm6Regs.HRCNFG.bit.EDGMODEB = 2;
EPwm6Regs.HRCNFG.bit.CTLMODE = 0;
EPwm6Regs.HRCNFG.bit.CTLMODEB = 0;
EPwm6Regs.HRCNFG.bit.HRLOAD = 0;
EPwm6Regs.HRCNFG.bit.HRLOADB = 0;
//////////
EPwm6Regs.HRCNFG.bit.AUTOCONV = 1;
EPwm6Regs.HRPCTL.bit.HRPE = 1;
EPwm6Regs.HRMSTEP.bit.HRMSTEP = 56 ; //hrmstep is 180pS 10ns/180ps = 55.55
EDIS;
EALLOW;
CpuSysRegs.PCLKCR0.bit.TBCLKSYNC = 1;
EDIS;
Problem still exist. Herewith I have attached waveform which shows fine duty and frequency. But if I zoom then I can see falling edge continuously moving.(I have put trigger on rising edge and continuous monitor falling edge). That movement length is 4.5nS for 1011kHz and 50% duty.
hrpwm_duty_sfo_v8.rarDear Bharathi,
I have modified code as per my requirement from V170 of control suite. In attached code, If i disable HRPE then jitter is removed.
Please verify and suggest me necessary changes.
-Maulik
Maulik,
I'm unable to replicate the issue. Example seems to work fine. I'll try to debug further.
-Bharathi.
Hi,
Is there any update? Problem is still exist.
Do You test last attached example with your system?
Regards,
Maulik