mirror of
https://github.com/liberatedsystems/RNode_Firmware_CE.git
synced 2024-07-02 14:34:13 +02:00
Fix DCD detection broken from pull request #13
This commit is contained in:
parent
dccee13022
commit
8b7d4611e0
@ -631,9 +631,9 @@ void serialCallback(uint8_t sbyte) {
|
|||||||
void updateModemStatus() {
|
void updateModemStatus() {
|
||||||
uint8_t status = LoRa.modemStatus();
|
uint8_t status = LoRa.modemStatus();
|
||||||
last_status_update = millis();
|
last_status_update = millis();
|
||||||
if ((status & SIG_DETECT) == SIG_DETECT) { stat_signal_detected = true; } else { stat_signal_detected = false; }
|
if (status & SIG_DETECT == SIG_DETECT) { stat_signal_detected = true; } else { stat_signal_detected = false; }
|
||||||
if ((status & SIG_SYNCED) == SIG_SYNCED) { stat_signal_synced = true; } else { stat_signal_synced = false; }
|
if (status & SIG_SYNCED == SIG_SYNCED) { stat_signal_synced = true; } else { stat_signal_synced = false; }
|
||||||
if ((status & RX_ONGOING) == RX_ONGOING) { stat_rx_ongoing = true; } else { stat_rx_ongoing = false; }
|
if (status & RX_ONGOING == RX_ONGOING) { stat_rx_ongoing = true; } else { stat_rx_ongoing = false; }
|
||||||
|
|
||||||
if (stat_signal_detected || stat_signal_synced || stat_rx_ongoing) {
|
if (stat_signal_detected || stat_signal_synced || stat_rx_ongoing) {
|
||||||
if (dcd_count < dcd_threshold) {
|
if (dcd_count < dcd_threshold) {
|
||||||
|
Loading…
Reference in New Issue
Block a user