12.6.2020 Experimenting with URH sniff protocol + SX1278/Arduino HW: Arduino Due + Dragino Lora Module (Semtech SX1278) SW: Universal Radio Hacker, LoraLib for Arduino 435 MHz FSK 4800 bps 0xAA preamble + 8 sync bytes, no FSK data shaping. URH sniff protocol managed to show correct preamble and sync bytes (almost). Samples per symbol value = 58, 250 000 samples/second / 4800 = 52, but a bit greater values worked better. Bits per symbol = 1 (2-FSK) #include <LoRaLib.h> SX1278 fsk = new LoRa; void setup() { Serial.begin(9600); Serial.print(F("Initializing ... ")); int state = fsk.beginFSK(); if (state == ERR_NONE) { Serial.println(F("success!")); } else { Serial.print(F("failed, code ")); Serial.println(state); while (true); } state = fsk.setFrequency(435.0); state = fsk.setBitRate(4.8); state = fsk.setFrequencyDeviation(10.0); state...