This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
teensy-core-4.1
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix DMAChannel.triggerContinuously()
teensy4-core
PaulStoffregen
10 years ago
parent
3b5dc896f7
commit
32c20c97e0
1 changed files
with
1 additions
and
1 deletions
Unified View
Show Diff Stats
+1
-1
teensy3/DMAChannel.h
+ 1
- 1
teensy3/DMAChannel.h
View File
if (mux[ch] == i) break;
if (mux[ch] == i) break;
}
}
if (ch >= DMA_NUM_CHANNELS) {
if (ch >= DMA_NUM_CHANNELS) {
mux[channel] = i;
mux[channel] =
(
i
| DMAMUX_ENABLE)
;
return;
return;
}
}
}
}
Write
Preview
Loading…
Cancel
Save