ESP32_LoRaWAN
ESP32_LoRaWAN copied to clipboard
Is it possible to have the esp32 not go to sleep while waiting for the next send period?
I have an application where I don't want to put the device to sleep as it waits. But since a lot of the code is in assembler language I cannot figure how to not put it into sleep. If I just loop on a delay function, it never fires off another message.
You can try to use CLASS_C
I also dont want the device to sleep. I would like to display sensor readings on the OLED while waiting to send. Did you get anywhere with the non-sleep?