Add HW models for RPi Pico (W) and RAK11310

pull/351/head
GUVWAF 2023-05-28 14:09:22 +02:00
rodzic 869390e362
commit 95719b73bd
1 zmienionych plików z 16 dodań i 1 usunięć

Wyświetl plik

@ -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;
}
}