Bläddra i källkod

Merge pull request #452 from FrankBoesing/patch-4

Fix Macro clockCyclesPerMicrosecond
teensy4-core
Paul Stoffregen 4 år sedan
förälder
incheckning
eda37ec204
Inget konto är kopplat till bidragsgivarens mejladress
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      teensy4/wiring.h

+ 1
- 1
teensy4/wiring.h Visa fil

@@ -157,7 +157,7 @@ extern long double pow10l(long double x);
#define interrupts() __enable_irq()
#define noInterrupts() __disable_irq()

#define clockCyclesPerMicrosecond() ( F_CPU / 1000000L )
#define clockCyclesPerMicrosecond() ( F_CPU_ACTUAL / 1000000L )
#define clockCyclesToMicroseconds(a) ( (a) / clockCyclesPerMicrosecond() )
#define microsecondsToClockCycles(a) ( (a) * clockCyclesPerMicrosecond() )


Laddar…
Avbryt
Spara