From 631f59389547fd9aa34c84749b8a7cf3e60ce0b3 Mon Sep 17 00:00:00 2001 From: Scott Powell Date: Mon, 21 Apr 2025 21:38:57 +1000 Subject: [PATCH 1/2] * companion: bug fix for 'export contact' --- examples/companion_radio/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/companion_radio/main.cpp b/examples/companion_radio/main.cpp index 895a1bab..5d4dbfa3 100644 --- a/examples/companion_radio/main.cpp +++ b/examples/companion_radio/main.cpp @@ -1122,6 +1122,8 @@ public: // export SELF auto pkt = createSelfAdvert(_prefs.node_name, _prefs.node_lat, _prefs.node_lon); if (pkt) { + pkt->header |= ROUTE_TYPE_FLOOD; // would normally be sent in this mode + out_frame[0] = RESP_CODE_EXPORT_CONTACT; uint8_t out_len = pkt->writeTo(&out_frame[1]); releasePacket(pkt); // undo the obtainNewPacket() From 9d82911e18bf11f3f80cffff633288c7af0738f5 Mon Sep 17 00:00:00 2001 From: Scott Powell Date: Mon, 21 Apr 2025 21:50:55 +1000 Subject: [PATCH 2/2] * ver bump to v1.5.1 --- examples/companion_radio/main.cpp | 2 +- examples/simple_repeater/main.cpp | 2 +- examples/simple_room_server/main.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/companion_radio/main.cpp b/examples/companion_radio/main.cpp index 5d4dbfa3..88652697 100644 --- a/examples/companion_radio/main.cpp +++ b/examples/companion_radio/main.cpp @@ -95,7 +95,7 @@ static uint32_t _atoi(const char* sp) { #endif #ifndef FIRMWARE_VERSION - #define FIRMWARE_VERSION "v1.5.0" + #define FIRMWARE_VERSION "v1.5.1" #endif #define CMD_APP_START 1 diff --git a/examples/simple_repeater/main.cpp b/examples/simple_repeater/main.cpp index d08fec4a..7ce05b64 100644 --- a/examples/simple_repeater/main.cpp +++ b/examples/simple_repeater/main.cpp @@ -24,7 +24,7 @@ #endif #ifndef FIRMWARE_VERSION - #define FIRMWARE_VERSION "v1.5.0" + #define FIRMWARE_VERSION "v1.5.1" #endif #ifndef LORA_FREQ diff --git a/examples/simple_room_server/main.cpp b/examples/simple_room_server/main.cpp index 931ad68d..9d07e7f4 100644 --- a/examples/simple_room_server/main.cpp +++ b/examples/simple_room_server/main.cpp @@ -24,7 +24,7 @@ #endif #ifndef FIRMWARE_VERSION - #define FIRMWARE_VERSION "v1.5.0" + #define FIRMWARE_VERSION "v1.5.1" #endif #ifndef LORA_FREQ