mirror of
https://github.com/meshtastic/firmware.git
synced 2025-10-27 23:12:39 +00:00
Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
commit
9c5513dcfe
@ -113,8 +113,12 @@ meshtastic_MeshPacket *NodeInfoModule::allocReply()
|
|||||||
u.public_key.size = 0;
|
u.public_key.size = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear the user.id field since it should be derived from node number on the receiving end
|
// FIXME: Clear the user.id field since it should be derived from node number on the receiving end
|
||||||
u.id[0] = '\0';
|
// u.id[0] = '\0';
|
||||||
|
|
||||||
|
// Ensure our user.id is derived correctly
|
||||||
|
strcpy(u.id, nodeDB->getNodeId().c_str());
|
||||||
|
|
||||||
LOG_INFO("Send owner %s/%s/%s", u.id, u.long_name, u.short_name);
|
LOG_INFO("Send owner %s/%s/%s", u.id, u.long_name, u.short_name);
|
||||||
lastSentToMesh = millis();
|
lastSentToMesh = millis();
|
||||||
return allocDataProtobuf(u);
|
return allocDataProtobuf(u);
|
||||||
|
|||||||
@ -107,3 +107,7 @@ build_src_filter = ${env:native-tft.build_src_filter}
|
|||||||
[env:coverage]
|
[env:coverage]
|
||||||
extends = env:native
|
extends = env:native
|
||||||
build_flags = -lgcov --coverage -fprofile-abs-path -fsanitize=address ${env:native.build_flags}
|
build_flags = -lgcov --coverage -fprofile-abs-path -fsanitize=address ${env:native.build_flags}
|
||||||
|
; https://docs.platformio.org/en/latest/projectconf/sections/env/options/test/test_testing_command.html
|
||||||
|
test_testing_command =
|
||||||
|
${platformio.build_dir}/${this.__env__}/program
|
||||||
|
-s
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user