Author Topic: PIC16F87 PWM formula  (Read 827 times)

0 Members and 1 Guest are viewing this topic.

Offline GreyAreaTopic starter

  • Contributor
  • Posts: 39
  • Country: gb
PIC16F87 PWM formula
« on: September 04, 2019, 08:59:57 pm »
Hi, I must be tired because I don't seem to be reading this right.  I'm referring to the PIC16F87/88 datasheet where section 9.3.1 says "The PWM period can be calculated using the following formula." and gives.

PWM Period = [ (PR2) + 1 ] x 4 x Tosc x (TMR2 Prescale Value)

Further down, in table 9-3 is goes on to give an example at 20Mhz for 19.53Khz with prescalar and PR2 values of 1 and 0xFF respectively.

If I punch into my calculator 256 x 4 x 20000000 x 1 I get 20.48E9.  If I totally dropped the Mhz unit I'd get 20.48Khz but not 19.53.

My poor brain hurts :D where am I going wrong?
 

Offline Fratink

  • Contributor
  • Posts: 44
  • Country: ca
Re: PIC16F87 PWM formula
« Reply #1 on: September 04, 2019, 09:26:13 pm »
That manual is not well written, but it's correct.

Tosc = 1/20Mhz (according to that table) (That's where your mistake is)

And Freq = 1/PwmPeriod:
1/(256 * 4 /20e6) = 19531

Hope that helps.
 

Offline GromBeestje

  • Frequent Contributor
  • **
  • Posts: 282
  • Country: nl
Re: PIC16F87 PWM formula
« Reply #2 on: September 04, 2019, 09:32:52 pm »
That formula seems wrong. And when thinking about what is should be, one thing comes to mind. One usually divides the clock frequency by something. As it takes x ticks from the clock to do something.

This gives 20000000 / (256 * 4) = 19531.25.  Which seems to be the expected 19.53KHz
 
The following users thanked this post: GreyArea

Offline Fratink

  • Contributor
  • Posts: 44
  • Country: ca
Re: PIC16F87 PWM formula
« Reply #3 on: September 04, 2019, 09:39:00 pm »
The formula isn't actually wrong, you just have to search for what Tosc means higher up in the document.  T (time) vs F( frequency).  I had to search around to figure it out.

That formula seems wrong. And when thinking about what is should be, one thing comes to mind. One usually divides the clock frequency by something. As it takes x ticks from the clock to do something.

This gives 20000000 / (256 * 4) = 19531.25.  Which seems to be the expected 19.53KHz
 
The following users thanked this post: GreyArea

Online Ian.M

  • Super Contributor
  • ***
  • Posts: 12982
Re: PIC16F87 PWM formula
« Reply #4 on: September 04, 2019, 09:51:21 pm »
Microchip datasheets are known to be prone to errors copy/pasted from previous datasheets with slightly different peripheral hardware.  Back in the PIC16C era there was such an error in the example PWM frequencies table and no-one has trusted those tables since even though the error was corrected in later PIC16F datasheets.

Trust the hardware!  Once you know that TMR2 resets on the next input clock cycle after a PR2 match, and that its got a 1:1/1:4/1:16 prescaler (officially) driven by the instruction & peripheral clock of Fosc/4, the formula is simple to derive from the block diagram*, in this instance is correctly documented,  and (unless mathematically challenged) you will get the right answers.

* The block diagram is probably in the 'lies to children' category, as it doesn't make sense for the two low bits of the duty cycle register to be matched against two bits grabbed out of the prescaler or the instruction (Q) clock divider, as that would require a lot of extra gates to switch the equality comparator inputs to different prescaler and Q clock divider taps.  Its far more likely that the Timer 2 prescaler actually has Fosc as its input clock, not Fosc/4, and that there is an undocumented pair of flipflops between the prescaler output and Timer 2 that divide by four *AFTER* the prescaler and also provide the two low bits for comparison with the PWM duty cycle register.  The end result would be identical, just less silicon area used.  :-/O
« Last Edit: September 04, 2019, 09:54:12 pm by Ian.M »
 

Offline GreyAreaTopic starter

  • Contributor
  • Posts: 39
  • Country: gb
Re: PIC16F87 PWM formula
« Reply #5 on: September 05, 2019, 07:13:34 am »
Thanks all!  I really was tired lol - went to bed straight after posting and I realised that Tosc ≠ Fosc as I was drifting off.

I've added the (better) rearranged formulas to my notes - thanks again.
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf