Hi,
I'm toggling a GPIO pin in my clock function which is configured with a tick period = 1000 us and Period/Initial timeout = 1. I then check the signal on my oscilloscope and see that the signal is indeed toggling every 1000 x 1 us .
Now, I change the tick period to 10 us, and it does not toggle the GPIO pin at that rate. I put a break point in my clock function and notice that it is not even entering that function.
I played around with different values of the tick period and found that if I put a tick period greater than of 65 us, I see the toggling on the oscilloscope. Any value smaller that that, it doesn't enter the clock function.
For my application, I ideally would like to call the clock function every 10 us, which doesn't seem to be working with the clock module. Can anyone point out what's going on and if I'm missing something ?
Thanks !