mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-21 22:32:29 +00:00
Fixed to reserve as much space as it uses.
This commit is contained in:
parent
e2aa5ef376
commit
3408e1ddbf
@ -17,7 +17,7 @@ use {defmt_rtt as _, panic_probe as _};
|
||||
|
||||
// Defined in memory.x
|
||||
#[link_section = ".ram_d3"]
|
||||
static mut RAM_D3: GroundedArrayCell<u8, { 64 * 1024 }> = GroundedArrayCell::uninit();
|
||||
static mut RAM_D3: GroundedArrayCell<u8, 256> = GroundedArrayCell::uninit();
|
||||
|
||||
#[embassy_executor::task]
|
||||
async fn main_task(mut spi: spi::Spi<'static, Async>) {
|
||||
|
Loading…
Reference in New Issue
Block a user