You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This crate fails to compile on targets that lack atomic primitives, like thumbv6m-none-eabi. Would it make sense to support such targets? One option might be to add a feature called "use_atomic" that's enabled by default, and add #[cfg(feature = use_atomic)] to all the modules that need atomics.