Skip to content

Commit 76847a7

Browse files
author
Scott Powell
committed
Merge branch 'dev'
2 parents 9337645 + 9d82911 commit 76847a7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

examples/companion_radio/main.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ static uint32_t _atoi(const char* sp) {
9595
#endif
9696

9797
#ifndef FIRMWARE_VERSION
98-
#define FIRMWARE_VERSION "v1.5.0"
98+
#define FIRMWARE_VERSION "v1.5.1"
9999
#endif
100100

101101
#define CMD_APP_START 1
@@ -1122,6 +1122,8 @@ class MyMesh : public BaseChatMesh {
11221122
// export SELF
11231123
auto pkt = createSelfAdvert(_prefs.node_name, _prefs.node_lat, _prefs.node_lon);
11241124
if (pkt) {
1125+
pkt->header |= ROUTE_TYPE_FLOOD; // would normally be sent in this mode
1126+
11251127
out_frame[0] = RESP_CODE_EXPORT_CONTACT;
11261128
uint8_t out_len = pkt->writeTo(&out_frame[1]);
11271129
releasePacket(pkt); // undo the obtainNewPacket()

examples/simple_repeater/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#endif
2525

2626
#ifndef FIRMWARE_VERSION
27-
#define FIRMWARE_VERSION "v1.5.0"
27+
#define FIRMWARE_VERSION "v1.5.1"
2828
#endif
2929

3030
#ifndef LORA_FREQ

examples/simple_room_server/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#endif
2525

2626
#ifndef FIRMWARE_VERSION
27-
#define FIRMWARE_VERSION "v1.5.0"
27+
#define FIRMWARE_VERSION "v1.5.1"
2828
#endif
2929

3030
#ifndef LORA_FREQ

0 commit comments

Comments
 (0)