ソースを参照

opps, fix delayMicroseconds on Teensy-LC at 24 MHz for realz

teensy4-core
PaulStoffregen 9年前
コミット
ca6b6fd9b0
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      teensy3/pins_teensy.c

+ 1
- 1
teensy3/pins_teensy.c ファイルの表示

@@ -888,7 +888,7 @@ uint32_t micros(void)
#if defined(KINETISL) && F_CPU == 48000000
return count * 1000 + ((current * (uint32_t)87381) >> 22);
#elif defined(KINETISL) && F_CPU == 24000000
return count * 1000 + ((current * (uint32_t)174763) >> 21);
return count * 1000 + ((current * (uint32_t)174763) >> 22);
#endif
return count * 1000 + current / (F_CPU / 1000000);
}

読み込み中…
キャンセル
保存