add new hardware models
This commit is contained in:
@ -339,6 +339,11 @@ enum HardwareModel {
|
||||
*/
|
||||
HELTEC_HRU_3601 = 23;
|
||||
|
||||
/*
|
||||
* Heltec Wireless Bridge
|
||||
*/
|
||||
HELTEC_WIRELESS_BRIDGE = 24;
|
||||
|
||||
/*
|
||||
* B&Q Consulting Station Edition G1: https://uniteng.com/wiki/doku.php?id=meshtastic:station
|
||||
*/
|
||||
@ -427,7 +432,7 @@ enum HardwareModel {
|
||||
DR_DEV = 41;
|
||||
|
||||
/*
|
||||
* M5 esp32 based MCU modules with enclosure, TFT and LORA Shields. All Variants (Basic, Core, Fire, Core2, Paper) https://m5stack.com/
|
||||
* M5 esp32 based MCU modules with enclosure, TFT and LORA Shields. All Variants (Basic, Core, Fire, Core2, CoreS3, Paper) https://m5stack.com/
|
||||
*/
|
||||
M5STACK = 42;
|
||||
|
||||
@ -620,9 +625,50 @@ enum HardwareModel {
|
||||
*
|
||||
*/
|
||||
RP2040_FEATHER_RFM95 = 76;
|
||||
/* M5 esp32 based MCU modules with enclosure, TFT and LORA Shields. All Variants (Basic, Core, Fire, Core2, Paper) https://m5stack.com/ */
|
||||
M5STACK_COREBASIC=77;
|
||||
M5STACK_CORE2=78;
|
||||
|
||||
/* M5 esp32 based MCU modules with enclosure, TFT and LORA Shields. All Variants (Basic, Core, Fire, Core2, CoreS3, Paper) https://m5stack.com/ */
|
||||
M5STACK_COREBASIC = 77;
|
||||
M5STACK_CORE2 = 78;
|
||||
|
||||
/* Pico2 with Waveshare Hat, same as Pico */
|
||||
RPI_PICO2 = 79;
|
||||
|
||||
/* M5 esp32 based MCU modules with enclosure, TFT and LORA Shields. All Variants (Basic, Core, Fire, Core2, CoreS3, Paper) https://m5stack.com/ */
|
||||
M5STACK_CORES3 = 80;
|
||||
|
||||
/* Seeed XIAO S3 DK*/
|
||||
SEEED_XIAO_S3 = 81;
|
||||
|
||||
/*
|
||||
* Nordic nRF52840+Semtech SX1262 LoRa BLE Combo Module. nRF52840+SX1262 MS24SF1
|
||||
*/
|
||||
MS24SF1 = 82;
|
||||
|
||||
/*
|
||||
* Lilygo TLora-C6 with the new ESP32-C6 MCU
|
||||
*/
|
||||
TLORA_C6 = 83;
|
||||
|
||||
/*
|
||||
* WisMesh Tap
|
||||
* RAK-4631 w/ TFT in injection modled case
|
||||
*/
|
||||
WISMESH_TAP = 84;
|
||||
|
||||
/*
|
||||
* Similar to PORTDUINO but used by Routastic devices, this is not any
|
||||
* particular device and does not run Meshtastic's code but supports
|
||||
* the same frame format.
|
||||
* Runs on linux, see https://github.com/Jorropo/routastic
|
||||
*/
|
||||
ROUTASTIC = 85;
|
||||
|
||||
/*
|
||||
* Mesh-Tab, esp32 based
|
||||
* https://github.com/valzzu/Mesh-Tab
|
||||
*/
|
||||
MESH_TAB = 86;
|
||||
|
||||
/*
|
||||
* ------------------------------------------------------------------------------------------------------------------------------------------
|
||||
* 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.
|
||||
|
Reference in New Issue
Block a user