From 8fca9b207127042fff199d641971d25b11491f73 Mon Sep 17 00:00:00 2001 From: rcarteraz Date: Fri, 5 Dec 2025 09:36:17 -0700 Subject: [PATCH 1/3] Add muzi base hardware model details --- src/lib/resource.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/lib/resource.ts b/src/lib/resource.ts index df641fd..53b1c8b 100644 --- a/src/lib/resource.ts +++ b/src/lib/resource.ts @@ -729,6 +729,18 @@ export const deviceHardwareList: DeviceHardware[] = [ requiresDfu: false, images: ["thinknode_m2.svg"], }, + { + hwModel: 93, + hwModelSlug: "MUZI_BASE", + platformioTarget: "muzi-base", + architecture: "nrf52840", + activelySupported: true, + supportLevel: 1, + displayName: "muzi base", + tags: ["muzi"], + requiresDfu: true, + images: ["muzi_base.svg"] + }, { hwModel: 94, hwModelSlug: "HELTEC_MESH_POCKET", From 2634d2b1d20783fbbe9eead1ef1f7d4d250732c2 Mon Sep 17 00:00:00 2001 From: rcarteraz Date: Fri, 5 Dec 2025 09:40:52 -0700 Subject: [PATCH 2/3] Change requiresDfu from true to false --- src/lib/resource.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/resource.ts b/src/lib/resource.ts index 53b1c8b..ecd810b 100644 --- a/src/lib/resource.ts +++ b/src/lib/resource.ts @@ -738,7 +738,7 @@ export const deviceHardwareList: DeviceHardware[] = [ supportLevel: 1, displayName: "muzi base", tags: ["muzi"], - requiresDfu: true, + requiresDfu: false, images: ["muzi_base.svg"] }, { From c3f00cfc76447e9fd684812f432f24a1394fa3cd Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Fri, 5 Dec 2025 10:43:00 -0600 Subject: [PATCH 3/3] Update resource.ts --- src/lib/resource.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/resource.ts b/src/lib/resource.ts index ecd810b..e2ca68e 100644 --- a/src/lib/resource.ts +++ b/src/lib/resource.ts @@ -734,11 +734,11 @@ export const deviceHardwareList: DeviceHardware[] = [ hwModelSlug: "MUZI_BASE", platformioTarget: "muzi-base", architecture: "nrf52840", - activelySupported: true, + activelySupported: false, supportLevel: 1, displayName: "muzi base", tags: ["muzi"], - requiresDfu: false, + requiresDfu: true, images: ["muzi_base.svg"] }, {