Skip to content

Commit 7173b0f

Browse files
authored
correct dma length
1 parent b560189 commit 7173b0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nrf-hal-common/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ pub mod target_constants {
133133
#[cfg(feature = "51")]
134134
pub const EASY_DMA_SIZE: usize = (1 << 8) - 1;
135135
#[cfg(feature = "52805")]
136-
pub const EASY_DMA_SIZE: usize = (1 << 10) - 1;
136+
pub const EASY_DMA_SIZE: usize = (1 << 14) - 1;
137137
#[cfg(feature = "52810")]
138138
pub const EASY_DMA_SIZE: usize = (1 << 10) - 1;
139139
#[cfg(feature = "52811")]

0 commit comments

Comments
 (0)