Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is there a way to change the Timers used? #14

Open
madacol opened this issue Jul 24, 2018 · 5 comments
Open

Is there a way to change the Timers used? #14

madacol opened this issue Jul 24, 2018 · 5 comments
Labels
topic: code Related to content of the project itself type: enhancement Proposed improvement

Comments

@madacol
Copy link
Contributor

madacol commented Jul 24, 2018

I need to disable and/or change the sequence in which timers are used.

I know how to modify the library to do it, but it's really bothersome to carry a copy of the modified library wherever I go.

I think it's possible to make the Timers opt-out by specifying in the .ino file something like #define doNotUseTimer5 before including the library, and use a #ifndef doNotUseTimer5 to omit lines where Timer5 is defined.

I may do the Pull Request I just described, but I don't know if there already exist something to disable a specific timer, because I see this defined in the source #define _useTimer5 but I don't know how it works or how to use it outside of the library to disable a timer

@Abnaby
Copy link

Abnaby commented Mar 5, 2020

Timers in Arduino UNO:

In Arduino UNO there are three timers used for different functions.
Timer0:
It is an 8-Bit timer and used in timer function such as delay(), millis().
Timer1:
It is a 16-Bit timer and used in servo library.
Timer2:
It is an 8-Bit Timer and used in tone() function.
you can disable all timers by calling noInterrupts();
Parameters None and Returns Nothing
If U need Re-enables interrupts (after they’ve been disabled by nointerrupts())
you can Re-enables it by calling interrupts();
Parameters None Returns Nothing.

if you need to change timer usage or mode,

Timers Mode:
image
first, I prefer to delete setup and loop and use main() fun.
before start must disable all interrupts by calling noInterrupts();
This register holds the main control bits of the timer and used to control the prescalers of timer. It also allows controlling the mode of timer using the WGM bits.
1
image
Prescaler:
The CS12, CS11, CS10 bits in TCCR1B sets the prescaler value. A prescaler is used to setup the clock speed of the timer. Arduino Uno has prescalers of 1, 8, 64, 256, 1024.
2
Formula for preloader value for the required time in second:
TCNTn = 65535 – (16x1010xTime in sec / Prescaler Value)
To calculate preloader value for timer1 for time of 2 Sec:
TCNT1 = 65535 – (16x1010x2 / 1024) = 34285
small EX
noInterrupts();
Next the Timer1 is initialized.
TCCR1B = 0;
The preloader timer value
TCNT1 = Your_Intial_value;
Then the Pre scaler value 1024 is set in the TCCR1B register.
TCCR1B |= (1 << CS10)|(1 << CS12);

@madacol
Copy link
Contributor Author

madacol commented Apr 9, 2020

Thank's, it's very informative!

But I'm having a hard time understanding how to use that to stop the Servo library from using a specific timer

@Abnaby
Copy link

Abnaby commented Apr 10, 2020

you need to use another timer or what?

@madacol
Copy link
Contributor Author

madacol commented Apr 10, 2020

The problem was almost 2 years ago, so I don't remember the specifics.

What I do remember is that the first timer used by this library was interfering with some pins that I needed to use to send a PWM signal.

So I ended up modifying the library, by removing the line #define _useTimer5 (and another thing too that I don't remember now, but it was related and near)

@FernandoGarcia
Copy link

Hi!

I think it should be like this:

#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__)
//#define _useTimer5
#define _useTimer1
#define _useTimer3
#define _useTimer4
//typedef enum { _timer5, _timer1, _timer3, _timer4, _Nbr_16timers } timer16_Sequence_t ;
typedef enum { _timer1, _timer3, _timer4, _Nbr_16timers } timer16_Sequence_t ;

Found here.

Best regards.

@per1234 per1234 added type: enhancement Proposed improvement topic: code Related to content of the project itself labels Jul 19, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic: code Related to content of the project itself type: enhancement Proposed improvement
Projects
None yet
Development

No branches or pull requests

4 participants