Merge pull request #455 from papyDoctor/spi-isbusy

added SPI is_busy function
This commit is contained in:
Jan Niehusmann 2022-09-20 23:27:30 +02:00 committed by GitHub
commit e7454087d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -179,6 +179,11 @@ impl<D: SpiDevice, const DS: u8> Spi<Enabled, D, DS> {
self.device.sspsr.read().rne().bit_is_set()
}
/// Check if spi is busy transmitting and/or receiving
pub fn is_busy(&self) -> bool {
self.device.sspsr.read().bsy().bit_is_set()
}
/// Disable the spi to reset its configuration
pub fn disable(self) -> Spi<Disabled, D, DS> {
self.device.sspcr1.modify(|_, w| w.sse().clear_bit());