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:
Jordan Yates 2024-12-17 21:05:54 +10:00 committed by Benjamin Cabé
parent a2a0cc8074
commit f42b9ac354

View file

@ -80,7 +80,7 @@ int main(void)
}
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 */