From fab25e1a72e8446e78ff5d2f003fccd3da5dc160 Mon Sep 17 00:00:00 2001 From: John Poole Date: Sat, 25 Apr 2026 04:20:14 -0700 Subject: [PATCH] Commencing DOxygen documentation --- exercises/01_lora_ascii_pingpong/src/main.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/exercises/01_lora_ascii_pingpong/src/main.cpp b/exercises/01_lora_ascii_pingpong/src/main.cpp index b13fd1e..d7b2450 100644 --- a/exercises/01_lora_ascii_pingpong/src/main.cpp +++ b/exercises/01_lora_ascii_pingpong/src/main.cpp @@ -2,6 +2,18 @@ // $Id$ // $HeadURL$ +/* + Exercise 01: LoRa ASCII ping-pong (serial only) + + This is a simple "ping-pong" test of LoRa communication between two nodes, using the Serial console for output. + The nodes will periodically transmit a message containing their label and an iteration count, and print any received messages along with RSSI and SNR. + + To run this test, set up two devices with the same code but different NODE_LABELs (e.g., "A" and "B"), and ensure they are within range of each other. You should see them exchanging messages in the Serial console. + + Note: This exercise assumes you have already set up the hardware and wiring correctly, as per the instructions in the README. Make sure to adjust the pins in platformio.ini if needed. + + +*/ #include #include #include