Set default value for LoraUseIsr to false

pull/15/head
sh123 2021-04-07 08:38:22 +03:00
rodzic a876d65909
commit 956574368e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -34,7 +34,7 @@ void initializeConfig(LoraPrs::Config &cfg) {
cfg.LoraPinSs = CFG_LORA_PIN_SS; cfg.LoraPinSs = CFG_LORA_PIN_SS;
cfg.LoraPinRst = CFG_LORA_PIN_RST; cfg.LoraPinRst = CFG_LORA_PIN_RST;
cfg.LoraPinDio0 = CFG_LORA_PIN_DIO0; cfg.LoraPinDio0 = CFG_LORA_PIN_DIO0;
cfg.LoraUseIsr = true; // set to false for polling instead of interrupts cfg.LoraUseIsr = false; // set to true for incoming packet ISR usage
// aprs configuration // aprs configuration
cfg.AprsHost = "rotate.aprs2.net"; cfg.AprsHost = "rotate.aprs2.net";