Closed Dirbaio closed 1 year ago
Requires #440
Same as #443 but for I2C.
This adds a few bus sharing implementations, with varying tradeoffs:
RefCellDevice
CriticalSectionDevice
MutexDevice
@eldruin done
Build succeeded:
Requires #440
Same as #443 but for I2C.
This adds a few bus sharing implementations, with varying tradeoffs:
RefCellDevice
: single thread onlyCriticalSectionDevice
: thread-safe, coarse locking, nostd.MutexDevice
: thread-safe, fine-grained locking, std only.