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
Corrected conversion from words to bytes in transferCount().
teensy4-core
kbob
9 years ago
parent
2ee5a630c8
commit
3676d1621f
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+1
-1
teensy3/DMAChannel.h
+ 1
- 1
teensy3/DMAChannel.h
View File
@@ -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;
}
/*************************************************/
Write
Preview
Loading…
Cancel
Save