mirror of https://github.com/midilab/uClock
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
726 B
29 lines
726 B
2 years ago
|
#include <Arduino.h>
|
||
|
|
||
|
#define TIMER_ID 0
|
||
|
|
||
|
hw_timer_t * _uclockTimer = NULL;
|
||
|
portMUX_TYPE _uclockTimerMux = portMUX_INITIALIZER_UNLOCKED;
|
||
|
#define ATOMIC(X) portENTER_CRITICAL_ISR(&_uclockTimerMux); X; portEXIT_CRITICAL_ISR(&_uclockTimerMux);
|
||
|
|
||
|
// forward declaration of ISR
|
||
|
void ARDUINO_ISR_ATTR uclockISR();
|
||
|
|
||
|
void initTimer(uint32_t init_clock)
|
||
|
{
|
||
|
_uclockTimer = timerBegin(TIMER_ID, 80, true);
|
||
|
|
||
|
// attach to generic uclock ISR
|
||
|
timerAttachInterrupt(_uclockTimer, &uclockISR, true);
|
||
|
|
||
|
// init clock tick time
|
||
|
timerAlarmWrite(_uclockTimer, init_clock, true);
|
||
|
|
||
|
// activate it!
|
||
|
timerAlarmEnable(_uclockTimer);
|
||
|
}
|
||
|
|
||
|
void setTimer(uint32_t us_interval)
|
||
|
{
|
||
|
timerAlarmWrite(_uclockTimer, us_interval, true);
|
||
|
}
|