Skip to content

Commit

Permalink
Merge pull request #48 from meshtastic/cleanup-targets
Browse files Browse the repository at this point in the history
Cleanup variants
  • Loading branch information
thebentern authored Dec 27, 2024
2 parents d5973e5 + ecc5fdc commit 49d5b0f
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions src/lib/resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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)",
},
Expand Down Expand Up @@ -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,
}
];

0 comments on commit 49d5b0f

Please sign in to comment.