Sfoglia il codice sorgente

fix double promotion

main
Frank 4 anni fa
parent
commit
bf5b36c9ec
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      teensy4/IntervalTimer.h

+ 2
- 2
teensy4/IntervalTimer.h Vedi File

@@ -65,7 +65,7 @@ public:
}
bool begin(void (*funct)(), float microseconds) {
if (microseconds <= 0 || microseconds > MAX_PERIOD) return false;
uint32_t cycles = (float)(24000000 / 1000000) * microseconds - 0.5;
uint32_t cycles = (float)(24000000 / 1000000) * microseconds - 0.5f;
if (cycles < 17) return false;
return beginCycles(funct, cycles);
}
@@ -90,7 +90,7 @@ public:
}
void update(float microseconds) {
if (microseconds <= 0 || microseconds > MAX_PERIOD) return;
uint32_t cycles = (float)(24000000 / 1000000) * microseconds - 0.5;
uint32_t cycles = (float)(24000000 / 1000000) * microseconds - 0.5f;
if (cycles < 17) return;
if (channel) channel->LDVAL = cycles;
}

Loading…
Annulla
Salva