Support the Timer Calculator Project

Timer Calculator is a free software development tool used for easier calculation of timer interrupts.
Author
Message
Stefan3v
Posts: 5
Joined: 24 Sep 2012 10:27
Location: Romania
Contact:

Re: Support the Timer Calculator Project

#16 Post by Stefan3v » 25 May 2014 21:20

dan07 Timer Calculator work fine for 12F675 and 629.

dan07
Posts: 33
Joined: 14 Aug 2013 06:09

Re: Support the Timer Calculator Project

#17 Post by dan07 » 26 May 2014 00:50

Stefan3v wrote:dan07 Timer Calculator work fine for 12F675 and 629.
To use it with 12F675 and 629, which PIC should I select from the list in Timer Calculator?

Thanks.

User avatar
petar.timotijevic
mikroElektronika team
Posts: 1739
Joined: 19 Feb 2014 13:46
Location: Serbia
Contact:

Re: Support the Timer Calculator Project

#18 Post by petar.timotijevic » 26 Sep 2014 09:14

Hi,

Please select PIC16 in Timer Calculator.


Best regards,
Peter

pappicio
Posts: 3
Joined: 14 Apr 2015 21:11

Re: Support the Timer Calculator Project

#19 Post by pappicio » 18 Apr 2015 12:42

I asked for a question about pic timer calculator, I don't see my previous post: about delays to calculate between TMR0_BIT set to 1 and call breackpoint subroutine, (maybe there are some cycles to include into TMR0 count to calibrate better it!) a message told me that an administrator had to check the message, but from iesterday I cannot see my post.
Thanks.

User avatar
petar.timotijevic
mikroElektronika team
Posts: 1739
Joined: 19 Feb 2014 13:46
Location: Serbia
Contact:

Re: Support the Timer Calculator Project

#20 Post by petar.timotijevic » 21 Apr 2015 08:27

Hi pappicio and welcome to the MikroE forum,
pappicio wrote:I asked for a question about pic timer calculator, I don't see my previous post: about delays to calculate between TMR0_BIT set to 1 and call breackpoint subroutine, (maybe there are some cycles to include into TMR0 count to calibrate better it!) a message told me that an administrator had to check the message, but from iesterday I cannot see my post.
Thanks.
Please check forum topic where you created previous post.

First few posts need to be approved by forum Administrator.


Best regards,
Peter

StefaanC
Posts: 9
Joined: 14 Jun 2013 21:41

Re: Support the Timer Calculator Project

#21 Post by StefaanC » 09 Jan 2016 10:19

I would say, test the timer calculator.
If it's a usefull app, add small or bigger donation

SpiralProphet
Posts: 1
Joined: 29 Feb 2016 22:55

Re: Support the Timer Calculator Project

#22 Post by SpiralProphet » 29 Feb 2016 23:00

I've located an issue with the Timer Calculator. It's a wonderful tool that takes all the spreadsheets i've made previously and puts a nice interface on it.

However, the PIC24 / dsPIC33 32-bit timer generation is bugged.
When you generate the timer, the header comments show the correct settings for the prescaler, however the data loaded into the TxCON register is always 0x0;

This value never changes even though the comments do change the prescaler based on the calculation of the timer values.

Code: Select all

//Timer8/9
//Prescaler 1:256; PR9 Preload = 64373; PR8 Preload = 65445; Actual Interrupt Time = 18000 s
 
//Place/Copy this part in declaration section
void InitTimer8_9(){
  T8CON		 = 0x0;
  T9CON		 = 0x0;
  TMR8			 = 0;
  TMR9			 = 0;
  T9IE_bit		 = 1;
  T9IF_bit		 = 0;
  T9IP_0_bit		 = 1;
  T9IP_1_bit		 = 1;
  T9IP_2_bit		 = 1;
  PR9			 = 64373;
  PR8			 = 65445;
  T8CONbits.TON	 = 1;
  T8CONbits.T32	 = 1;
}
 
void Timer8_9Interrupt() iv IVT_ADDR_T9INTERRUPT{
  T9IF_bit		 = 0;
Felt i should share as i found this today while using the tool.

User avatar
Aleksandar.Mitrovic
mikroElektronika team
Posts: 1697
Joined: 11 Mar 2015 12:48

Re: Support the Timer Calculator Project

#23 Post by Aleksandar.Mitrovic » 01 Mar 2016 14:26

Hi,

Thank you for reporting this.

We will try to investigate this problem.

Best regards,
Aleksandar

Post Reply

Return to “Timer Calculator”