mirror of
https://github.com/markqvist/RNode_Firmware.git
synced 2025-06-22 21:54:12 -04:00
Update RNode_Firmware.ino
correct parentheses
This commit is contained in:
parent
96348de145
commit
72a4678949
1 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue