소스 검색

Merge pull request #452 from FrankBoesing/patch-4

Fix Macro clockCyclesPerMicrosecond
main
Paul Stoffregen 4 년 전
부모
커밋
eda37ec204
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      teensy4/wiring.h

+ 1
- 1
teensy4/wiring.h 파일 보기

@@ -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() )


Loading…
취소
저장