浏览代码

Edit DMAChannel.h comment/documentation

main
PaulStoffregen 9 年前
父节点
当前提交
b3a5abe6df
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. +4
    -2
      teensy3/DMAChannel.h

+ 4
- 2
teensy3/DMAChannel.h 查看文件

@@ -934,9 +934,11 @@ public:
}

// Use another DMA channel as the trigger, causing this
// channel to trigger after each transfer is makes, except
// channel to trigger after each transfer is makes, including
// the its last transfer. This effectively makes the 2
// channels run in parallel until the last transfer
// channels run in parallel. Note, on Teensy 3.0 & 3.1,
// this feature triggers on every transfer except the last.
// On Teensy-LC, it triggers on every one, including the last.
void triggerAtTransfersOf(DMABaseClass &ch) {
uint32_t dcr = ch.CFG->DCR;
uint32_t linkcc = (dcr >> 4) & 3;

正在加载...
取消
保存