Skip to content

Commit

Permalink
Merge branch 'meshtastic:master' into location
Browse files Browse the repository at this point in the history
  • Loading branch information
mc-hamster authored Apr 13, 2022
2 parents 2946f6e + 6ff1152 commit 021d947
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Meshtastic-protobufs
[![Open in Visual Studio Code](https://open.vscode.dev/badges/open-in-vscode.svg)](https://open.vscode.dev/meshtastic/Meshtastic-protobufs)
[![CI](https://github.com/meshtastic/Meshtastic-protobufs/actions/workflows/ci.yml/badge.svg)](https://github.com/meshtastic/Meshtastic-protobufs/actions/workflows/ci.yml)
[![CLA assistant](https://cla-assistant.io/readme/badge/meshtastic/Meshtastic-protobufs)](https://cla-assistant.io/meshtastic/Meshtastic-protobufs)

The protobuf definitions for the Meshtastic project (used by apps and the device code)

Expand Down
14 changes: 12 additions & 2 deletions mesh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,16 @@ enum HardwareModel {
*/
RAK11200 = 40;

/*
* B&Q Consulting Nano Edition G1: https://uniteng.com/wiki/doku.php?id=meshtastic:nano
*/
NANO_G1 = 41;

/*
* nRF52840 Dongle : https://www.nordicsemi.com/Products/Development-hardware/nrf52840-dongle/
*/
NRF52840_PCA10059 = 42;

/*
* Reserved ID For developing private Ports. These will show up in live traffic sparsely, so we can use a high number. Keep it within 8 bits.
*/
Expand Down Expand Up @@ -1017,9 +1027,9 @@ message NodeInfo {
*/
fixed32 last_heard = 5;
/*
* The latest device telemetry data for the node.
* The latest device metrics for the node.
*/
Telemetry telemetry = 6;
DeviceMetrics device_metrics = 6;
}

/*
Expand Down
13 changes: 0 additions & 13 deletions radioconfig.proto
Original file line number Diff line number Diff line change
Expand Up @@ -384,11 +384,6 @@ message RadioConfig {
*/
bool position_broadcast_smart_disabled = 17;

/*
* Send our owner info at least this often (also we always send once at boot - to rejoin the mesh)
*/
uint32 send_owner_interval = 2;

/*
* If we miss this many owner messages from a node, we declare the node
* offline (defaults to 3 - to allow for some lost packets) (FIXME not yet used)
Expand Down Expand Up @@ -418,13 +413,6 @@ message RadioConfig {
*/
uint32 phone_timeout_secs = 6;

/*
* Power management state machine option.
* See [power management](/docs/software/other/power) for details.
* 0 for default of two hours, MAXUINT for disabled
*/
uint32 phone_sds_timeout_sec = 7;

/*
* Power management state machine option.
* See [power management](/docs/software/other/power) for details.
Expand Down Expand Up @@ -951,7 +939,6 @@ message RadioConfig {
* Whether to send encrypted or decrypted packets to MQTT.
* This parameter is only honoured if you also set mqtt_server
* (the default official mqtt.meshtastic.org server can handle encrypted packets)
*
* Decrypted packets may be useful for external systems that want to consume meshtastic packets
*/
bool mqtt_encryption_enabled = 174;
Expand Down

0 comments on commit 021d947

Please sign in to comment.