[SX126x] Added SPI delay for SAMD cores (#153)

This commit is contained in:
jgromes 2020-06-20 21:13:50 +02:00
parent 6bdef76031
commit aa4f4c9ab4

View file

@ -1658,7 +1658,7 @@ int16_t SX126x::SPItransfer(uint8_t* cmd, uint8_t cmdLen, bool write, uint8_t* d
// some faster platforms require a short delay here
// not sure why, but it seems that long enough SPI transaction
// (e.g. setPacketParams for GFSK) will fail without it
#if defined(ARDUINO_ARCH_STM32)
#if defined(ARDUINO_ARCH_STM32) || defined(SAMD_SERIES)
delay(1);
#endif
#endif