sandeepmistry / arduino-LoRa

An Arduino library for sending and receiving data using LoRa radios.
MIT License
1.65k stars 630 forks source link

Issue with float in ISR on ESP32 #460

Open sacculus opened 3 years ago

sacculus commented 3 years ago

Patch for issue #459. Methods which use float values are not allowed in ISR on ESP32 platfom because they use float coprocessor. It's possible to use double type for this. Link of proof

IoTThinks commented 3 years ago

Let me check if the patch is ok for Arduino board.