瀏覽代碼

Corrected conversion from words to bytes in transferCount().

teensy4-core
kbob 9 年之前
父節點
當前提交
3676d1621f
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      teensy3/DMAChannel.h

+ 1
- 1
teensy3/DMAChannel.h 查看文件

@@ -791,7 +791,7 @@ public:
d = (dcr >> 17) & 3;
if (s == 0 || d == 0) n = 2;
else if (s == 2 || d == 2) n = 1;
CFG->DSR_BCR = len >> n;
CFG->DSR_BCR = len << n;
}

/*************************************************/

Loading…
取消
儲存