From 4ddf80c22300bdf6a87438b49629955a5a34ad13 Mon Sep 17 00:00:00 2001 From: Robert Carter Date: Wed, 12 Aug 2026 09:58:38 -0500 Subject: [PATCH 1/2] Add Elecrow ThinkNode M9 to the device hardware registry Register the Elecrow ThinkNode M9 (HW_MODEL THINKNODE_M9 = 131). --- src/lib/resource.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/lib/resource.ts b/src/lib/resource.ts index 4661790..e70484a 100644 --- a/src/lib/resource.ts +++ b/src/lib/resource.ts @@ -1215,4 +1215,14 @@ export const deviceHardwareList: DeviceHardware[] = [ tags: ["LilyGo"], images: ["tbeam-bpf.svg"], }, + { + hwModel: 131, + hwModelSlug: "THINKNODE_M9", + platformioTarget: "thinknode-m9", + architecture: "esp32-s3", + activelySupported: false, + supportLevel: 1, + displayName: "Elecrow ThinkNode M9", + tags: ["Elecrow"], + }, ]; From 7fe0213632e35ca9b69f0244ba609ddda10e3672 Mon Sep 17 00:00:00 2001 From: rcarteraz Date: Wed, 12 Aug 2026 08:08:35 -0700 Subject: [PATCH 2/2] Add partitionScheme to Elecrow ThinkNode M9 --- src/lib/resource.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/resource.ts b/src/lib/resource.ts index e70484a..cf09c20 100644 --- a/src/lib/resource.ts +++ b/src/lib/resource.ts @@ -1222,6 +1222,7 @@ export const deviceHardwareList: DeviceHardware[] = [ architecture: "esp32-s3", activelySupported: false, supportLevel: 1, + partitionScheme: "16MB", displayName: "Elecrow ThinkNode M9", tags: ["Elecrow"], },