ソースを参照

T3 - Bug in PINC

Reading wrong register for one bit...
teensy4-core
Kurt Eckhardt 5年前
コミット
d28e889454
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      teensy3/avr_emulation.h

+ 1
- 1
teensy3/avr_emulation.h ファイルの表示

@@ -602,7 +602,7 @@ public:
int ret = 0;
if (digitalReadFast(14)) ret |= (1<<0);
if (digitalReadFast(15)) ret |= (1<<1);
if (digitalReadFast(15)) ret |= (1<<2);
if (digitalReadFast(16)) ret |= (1<<2);
if (digitalReadFast(17)) ret |= (1<<3);
if (digitalReadFast(18)) ret |= (1<<4);
if (digitalReadFast(19)) ret |= (1<<5);

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