From 07743fb3a36a1e6d01177e97d5b0fb7b45215740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Fri, 17 Feb 2023 13:42:24 +0100 Subject: [PATCH] Move the G1 Explorer up to the 'core' devices --- meshtastic/mesh.proto | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 7f136ae..37002fb 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -302,6 +302,11 @@ enum HardwareModel { * TODO: REPLACE */ TLORA_T3_S3 = 16; + + /* + * B&Q Consulting Nano G1 Explorer: https://wiki.uniteng.com/en/meshtastic/nano-g1-explorer + */ + NANO_G1_EXPLORER = 17; /* * B&Q Consulting Station Edition G1: https://uniteng.com/wiki/doku.php?id=meshtastic:station @@ -309,7 +314,9 @@ enum HardwareModel { STATION_G1 = 25; /* + * --------------------------------------------------------------------------- * Less common/prototype boards listed here (needs one more byte over the air) + * --------------------------------------------------------------------------- */ LORA_RELAY_V1 = 32; @@ -381,15 +388,12 @@ enum HardwareModel { /* * BetaFPV ExpressLRS "Nano" TX Module 900MHz with ESP32 CPU */ - BETAFPV_900_NANO_TX = 46; + BETAFPV_900_NANO_TX = 46; /* - * B&Q Consulting Nano G1 Explorer: https://wiki.uniteng.com/en/meshtastic/nano-g1-explorer - */ - NANO_G1_EXPLORER = 47; - - /* + * ------------------------------------------------------------------------------------------------------------------------------------------ * 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. + * ------------------------------------------------------------------------------------------------------------------------------------------ */ PRIVATE_HW = 255; } @@ -1425,4 +1429,4 @@ message Compressed { * Device hardware model */ HardwareModel hw_model = 9; -} \ No newline at end of file +}