From 95719b73bde79ab56503f47e2b5bf3f8a3c994cd Mon Sep 17 00:00:00 2001 From: GUVWAF Date: Sun, 28 May 2023 14:09:22 +0200 Subject: [PATCH] Add HW models for RPi Pico (W) and RAK11310 --- meshtastic/mesh.proto | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 33c58df..aaf1823 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -387,6 +387,21 @@ enum HardwareModel { */ BETAFPV_900_NANO_TX = 46; + /* + * Raspberry Pi Pico (with Waveshare SX1262 LoRa Node Module) + */ + RPI_PICO = 47; + + /* + * Raspberry Pi Pico W (with Waveshare SX1262 LoRa Node Module) + */ + RPI_PICO_W = 48; + + /* + * RAK11310 (RP2040 + SX1262) + */ + RAK11310 = 49; + /* * ------------------------------------------------------------------------------------------------------------------------------------------ * 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. @@ -1444,4 +1459,4 @@ message DeviceMetadata { * Has Remote Hardware enabled */ bool hasRemoteHardware = 10; -} +} \ No newline at end of file