From ecc5fdc9fe5b9625c2f1e4635927bef31852d60e Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Thu, 26 Dec 2024 19:07:06 -0600 Subject: [PATCH] Cleanup variants --- src/lib/resource.ts | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/lib/resource.ts b/src/lib/resource.ts index bc41308..f7ff4d2 100644 --- a/src/lib/resource.ts +++ b/src/lib/resource.ts @@ -467,7 +467,7 @@ export const deviceHardwareList: DeviceHardware[] = [ hwModelSlug: "HELTEC_WIRELESS_TRACKER", platformioTarget: "tracksenger", architecture: "esp32-s3", - activelySupported: true, + activelySupported: false, supportLevel: 3, displayName: "TrackSenger (small TFT)", requiresDfu: true, @@ -477,7 +477,7 @@ export const deviceHardwareList: DeviceHardware[] = [ hwModelSlug: "HELTEC_WIRELESS_TRACKER", platformioTarget: "tracksenger-lcd", architecture: "esp32-s3", - activelySupported: true, + activelySupported: false, supportLevel: 3, displayName: "TrackSenger (big TFT)", requiresDfu: true, @@ -487,7 +487,7 @@ export const deviceHardwareList: DeviceHardware[] = [ hwModelSlug: "HELTEC_WIRELESS_TRACKER", platformioTarget: "tracksenger-oled", architecture: "esp32-s3", - activelySupported: true, + activelySupported: false, supportLevel: 3, displayName: "TrackSenger (big OLED)", }, @@ -600,11 +600,23 @@ export const deviceHardwareList: DeviceHardware[] = [ hwModelSlug: "WISMESH_TAP", platformioTarget: "rak_wismeshtap", architecture: "nrf52840", - activelySupported: false, + activelySupported: true, supportLevel: 1, displayName: "RAK WisMesh Tap", tags: ["RAK"], images: ["rak-wismeshtap.svg"], requiresDfu: true, }, + { + hwModel: 63, + hwModelSlug: "NRF52_PROMICRO_DIY", + platformioTarget: "nrf52_promicro_diy_tcxo", + architecture: "nrf52840", + activelySupported: true, + supportLevel: 3, + displayName: "NRF52 Pro-micro DIY", + tags: ["DIY"], + images: ["promicro.svg"], + requiresDfu: true, + } ];