From ae684384731b6d02b4ff4bb450ddbbb4a7ee0671 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sat, 14 Dec 2024 05:18:08 -0600 Subject: [PATCH 1/2] Add priority for new critical alert feature --- meshtastic/mesh.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index fc0b580..99c267a 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -1095,6 +1095,11 @@ message MeshPacket { */ HIGH = 100; + /* + * Higher priority alert message used for critical messages which take priority over other reliable packets. + */ + ALERT = 110; + /* * Ack/naks are sent with very high priority to ensure that retransmission * stops as soon as possible From 611e3994929011b254b694f80bcb54ce4c3ec084 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sat, 14 Dec 2024 05:19:25 -0600 Subject: [PATCH 2/2] Update mesh.proto --- meshtastic/mesh.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 99c267a..d03dbea 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -1096,7 +1096,7 @@ message MeshPacket { HIGH = 100; /* - * Higher priority alert message used for critical messages which take priority over other reliable packets. + * Higher priority alert message used for critical alerts which take priority over other reliable packets. */ ALERT = 110;