diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-09-19 18:48:33 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-09-19 18:48:33 +0200 |
commit | c59f87f58732bad349b05770ee7c6a43e6bb7258 (patch) | |
tree | 90be97c8b23df107c4612f22c1a60421ecb1e083 /src/arch | |
parent | 0288997cc3eea0b252b748f8803171a0a4e986fc (diff) |
lora32u4ii spi: Remove superfluous delay_ms
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/lora32u4ii/driver/spi.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/arch/lora32u4ii/driver/spi.cc b/src/arch/lora32u4ii/driver/spi.cc index f7cc29e..5c782c8 100644 --- a/src/arch/lora32u4ii/driver/spi.cc +++ b/src/arch/lora32u4ii/driver/spi.cc @@ -26,7 +26,6 @@ signed char SPI::xmit( } else { SPDR = 0; } - arch.delay_ms(1); while (!(SPSR & _BV(SPIF))) ; if (i < rx_len) { rx_buf[i] = SPDR; |