A RPi Pico powered Lightning Detector
at main 234 B view raw
1use embassy_rp::spinlock_mutex::SpinlockRawMutex; 2 3pub type AllocatorLock = SpinlockRawMutex<0>; 4pub type RtcLock = SpinlockRawMutex<1>; 5pub type ConnectionStatusLock = SpinlockRawMutex<2>; 6pub type NetDataLock = SpinlockRawMutex<3>;