fix: add re-export

This commit is contained in:
doryan 2025-05-22 22:01:35 +04:00
parent b3aa8ea46a
commit f43340db30

View File

@ -16,6 +16,8 @@ use static_pins::StaticPinOps;
mod structures;
pub use structures::ring_buffer::*;
pub type PollResult = Result<(), PollError>;
pub type ReadByteResult = Result<u8, CorruptedData>;
pub type CorruptedData = (u8, u8);