Selaa lähdekoodia

Add IntervalTimer update(microseconds)

https://forum.pjrc.com/threads/45518
main
PaulStoffregen 7 vuotta sitten
vanhempi
commit
5ecc562603
1 muutettua tiedostoa jossa 25 lisäystä ja 0 poistoa
  1. +25
    -0
      teensy3/IntervalTimer.h

+ 25
- 0
teensy3/IntervalTimer.h Näytä tiedosto

bool begin(void (*funct)(), double microseconds) { bool begin(void (*funct)(), double microseconds) {
return begin(funct, (float)microseconds); return begin(funct, (float)microseconds);
} }
void update(unsigned int microseconds) {
if (microseconds == 0 || microseconds > MAX_PERIOD) return;
uint32_t cycles = (F_BUS / 1000000) * microseconds - 1;
if (cycles < 36) return;
if (channel) channel->LDVAL = cycles;
}
void update(int microseconds) {
if (microseconds < 0) return;
return update((unsigned int)microseconds);
}
void update(unsigned long microseconds) {
return update((unsigned int)microseconds);
}
void update(long microseconds) {
return update((int)microseconds);
}
void update(float microseconds) {
if (microseconds <= 0 || microseconds > MAX_PERIOD) return;
uint32_t cycles = (float)(F_BUS / 1000000) * microseconds - 0.5;
if (cycles < 36) return;
if (channel) channel->LDVAL = cycles;
}
void update(double microseconds) {
return update((float)microseconds);
}
void end(); void end();
void priority(uint8_t n) { void priority(uint8_t n) {
nvic_priority = n; nvic_priority = n;

Loading…
Peruuta
Tallenna