Skip to content

Commit

Permalink
fixed accidental change
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 committed Feb 23, 2024
1 parent 8677061 commit 9200c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/DmaDriver.h
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ static inline void dmaAddMaskBytes(uint8_t *mask, uint32_t dest) {
if (dest < 8 * (DMA_MASK_SIZE)) {
byte = dest / 8;
bit = dest % 8;
mask[byte] |= (1 << bit);
mask[byte] += (1 << bit);
}
}

Expand Down

0 comments on commit 9200c0d

Please sign in to comment.