From 4dd8a201002fdeb200e378f9596bc796d659ab40 Mon Sep 17 00:00:00 2001 From: Colonel Panic Date: Wed, 29 Jul 2026 12:30:49 -0400 Subject: [PATCH] firmware: add 82:6b:f2 to target OUIs (DeFlockJoplin) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The README lists 31 OUIs including 82:6b:f2 (contributed by Michael / DeFlockJoplin — the 12th camera in his Joplin drive-test), but the target_ouis[] array only had the original 30. This closes that docs-vs-code gap so the firmware actually matches every OUI documented. --- main.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.cpp b/main.cpp index 5b50a5e..78aa787 100644 --- a/main.cpp +++ b/main.cpp @@ -99,9 +99,8 @@ static const char* target_ouis[] = { "94:08:53", "e4:aa:ea", "f4:6a:dd", "f8:a2:d6", "24:b2:b9", "00:f4:8d", "d0:39:57", "e8:d0:fc", "e0:4f:43", "b8:1e:a4", "70:08:94", "58:8e:81", "ec:1b:bd", "3c:71:bf", "58:00:e3", - "90:35:ea", "5c:93:a2", "64:6e:69", "48:27:ea", "a4:cf:12" - - + "90:35:ea", "5c:93:a2", "64:6e:69", "48:27:ea", "a4:cf:12", + "82:6b:f2" // contributed by Michael / DeFlockJoplin }; static const size_t OUI_COUNT = sizeof(target_ouis) / sizeof(target_ouis[0]);