samples: lora: receive: fix incorrect variable name
Fix an incorrect variable name from copy-pasting code from the async receive handler. Signed-off-by: Jordan Yates <jordan@embeint.com>
This commit is contained in:
parent
a2a0cc8074
commit
f42b9ac354
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ int main(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG_INF("LoRa RX RSSI: %d dBm, SNR: %d dB", rssi, snr);
|
LOG_INF("LoRa RX RSSI: %d dBm, SNR: %d dB", rssi, snr);
|
||||||
LOG_HEXDUMP_INF(data, size, "LoRa RX payload");
|
LOG_HEXDUMP_INF(data, len, "LoRa RX payload");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Enable asynchronous reception */
|
/* Enable asynchronous reception */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue