From f3a57add1ae4be78af0b74fa97f4bf03cc34890d Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 23 Feb 2025 13:06:21 -0600 Subject: [PATCH] Timestamp --- meshtastic/deviceonly.proto | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/meshtastic/deviceonly.proto b/meshtastic/deviceonly.proto index 16ab020..481bfba 100644 --- a/meshtastic/deviceonly.proto +++ b/meshtastic/deviceonly.proto @@ -264,23 +264,28 @@ message ChannelFile { */ uint32 version = 1; + /* + * The timestamp of the backup (if node has time) + */ + fixed32 timestamp = 2; + /* * The node's configuration */ - LocalConfig config = 2; + LocalConfig config = 3; /* * The node's module configuration */ - LocalModuleConfig module_config = 3; + LocalModuleConfig module_config = 4; /* * The node's channels */ - ChannelFile channels = 4; + ChannelFile channels = 5; /* * The node's user (owner) information */ - User owner = 5; + User owner = 6; } \ No newline at end of file