Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 4848

SDK • Re: Could use a sanity check of this code

$
0
0
Your calls to set the limit and level aren't wrong, but I suspect you don't need them for your use-case.


Those would be for the counter so it has an auto reset?
Yes. The counter part of it works exactly like it does in the PWM case - in fact you could have a PWM output from the A channel, driven from clock input on the B channel if you really wanted to, but that's not the common use case.

So if you are just counting input pulses - for an event counter, or to measure frequency, then you normally leave the wrap at the default (64K-1) so the 16-bit counter wraps round, and if you haven't enabled the A output then the level value doesn't do anything so you don't need to set it.

You might want to set the counter to count down for some applications, default is to count up.
What about the clock divider? I have 8 but does that mean it takes 8 pulses before the count will increment?
Yes. So if you are just counting pulses that come in at a reasonable rate, you want a divider of 1. If you are trying to measure the frequency of a clock in the hundreds-of-kilohertz to megahertz range, then you need a divider to make the counts reasonable.
I've got a timer running that will store and reset the count.
That's exactly how I use it in a clock frequency measuring application. The 4-line chunk of initialisation code I posted earlier is the whole of my initialisation (you don't need the pwm_set_enabled(), pwm_init() will do it for you), and then in my timer function I just have:

Code:

    clock_hz = pwm_get_counter(pwm_gpio_to_slice_num(MY_PIN)) * MY_CLKDIV;    pwm_set_counter(pwm_gpio_to_slice_num(MY_PIN), 0);
Where in my case I have CLKDIV of 16 and I'm measuring clocks of typically 100kHz to a bit under 1MHz; my software timer runs at 1Hz, so with the 1MHz worst-case the timer will count up to 1000000/16 = 62500, which just fits in the 16-bit counter.


The RP2040 PWM unit is very nice for PWM output, does pulse counting/frequency measuring quite satisfactorily on the B inputs only, but the one thing it doesn't do compared to other similar chips is timer capture - if you need that, you have to implement it in PIO (which is quite easy to do).

Statistics: Posted by arg001 — Sat May 04, 2024 8:22 pm



Viewing all articles
Browse latest Browse all 4848

Trending Articles