瀏覽代碼

more efficient

main
Frank 4 年之前
父節點
當前提交
0ce9412e25
No account linked to committer's email address
共有 1 個文件被更改,包括 6 次插入17 次删除
  1. +6
    -17
      teensy4/usb.c

+ 6
- 17
teensy4/usb.c 查看文件

@@ -247,32 +247,21 @@ static void isr(void)
completestatus &= endpointN_notify_mask;
#if 1
if (completestatus) {
int s;

// transmit:
s = 0;
uint32_t tx = completestatus >> 16;
while(tx) {
while (tx) {
int p=__builtin_ctz(tx);
if (p==0) {
run_callbacks(endpoint_queue_head + s * 2 + 1);
p = 1;
}
tx >>= p;
s += p;
};
run_callbacks(endpoint_queue_head + p * 2 + 1);
tx &= ~(1<<p);
}

// receive:
s = 0;
uint32_t rx = completestatus & 0xffff;
while(rx) {
int p=__builtin_ctz(rx);
if (p==0) {
run_callbacks(endpoint_queue_head + s * 2);
p = 1;
}
rx >>= p;
s += p;
run_callbacks(endpoint_queue_head + p * 2);
rx &= ~(1<<p);
};
}
#else

Loading…
取消
儲存