This commit is contained in:
Priec
2026-05-17 23:09:21 +02:00
parent 22b3b2307d
commit a93965eccf
2 changed files with 18 additions and 22 deletions

View File

@@ -16,8 +16,8 @@ use semestralka2::send::*;
use {defmt_rtt as _, panic_probe as _};
static PIPE: Channel<CriticalSectionRawMutex, u8, 64> = Channel::new();
static PIPE_REC: Channel<CriticalSectionRawMutex, u8, 64> = Channel::new();
static PIPE: Channel<CriticalSectionRawMutex, u8, 128> = Channel::new();
static PIPE_REC: Channel<CriticalSectionRawMutex, u8, 128> = Channel::new();
// static REC_ALLOWED: AtomicBool = AtomicBool::new(true);
#[embassy_executor::main]