Skip to content

Commit

Permalink
Merge pull request #617 from meshtastic/move-pioenv
Browse files Browse the repository at this point in the history
Move PIO env to mynodeinfo
  • Loading branch information
thebentern authored Nov 4, 2024
2 parents 254fbda + e505f60 commit 0c903c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion meshtastic/mesh.options
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
# Big enough for 1.2.28.568032c-d
*MyNodeInfo.firmware_version max_size:18
*MyNodeInfo.device_id max_size:16
*MyNodeInfo.pio_env max_size:40

*MyNodeInfo.air_period_tx max_count:8
*MyNodeInfo.air_period_rx max_count:8
Expand Down Expand Up @@ -67,7 +68,6 @@
*NeighborInfo.neighbors max_count:10

*DeviceMetadata.firmware_version max_size:18
*DeviceMetadata.pio_env max_size:40

*MqttClientProxyMessage.topic max_size:60
*MqttClientProxyMessage.data max_size:435
Expand Down
10 changes: 5 additions & 5 deletions meshtastic/mesh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1462,6 +1462,11 @@ message MyNodeInfo {
* Unique hardware identifier for this device
*/
bytes device_id = 12;

/*
* The PlatformIO environment used to build this firmware
*/
string pio_env = 13;
}

/*
Expand Down Expand Up @@ -1870,11 +1875,6 @@ message DeviceMetadata {
* Has PKC capabilities
*/
bool hasPKC = 11;

/*
* Device firmware environment string
*/
string pio_env = 12;
}

/*
Expand Down

0 comments on commit 0c903c0

Please sign in to comment.