Timer_writePeriod() API call not working

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
lock attach
Attachments are accessible only for community members.
Anonymous
Not applicable

Hi,

   

I built a simple timer example with terminal count ISR enabled.

   

I tried setting the Peroid through Timer_writePeriod() API call. but it always takes period from the configuration window.

   

Tried manually forcing counter to zero  through Timer_writeCounter(0) API call but this triggers tc interrupt immediately.

   

I have attached my code.

   

 

   

Thanks in advance.

   

 

   

Bhargavi

0 Likes
1 Reply
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked

I cannot believe that you wait 2 hours for the timer to expire 🙂

   

Datasheet says for WritePeriod() that the new period is used the next time the timer is reloaded. so what you observe is as it should be.

   

Setting the counter to zero has to fire tc interrupt immediately.

   

Workaround: use a reset input which you may connect to a control register

   

 

   

Bob

0 Likes