From 0f63e51c888a53747fe607afc00a52fdb93da039 Mon Sep 17 00:00:00 2001 From: mikecarper Date: Thu, 9 Jul 2026 23:04:55 -0700 Subject: [PATCH] Update Mesh America catalogs for 1.16.02 assets --- .../generate-mesh-america-catalogs.ps1 | 103 +- ...mind-cascade-logging-v1.16.0-provider.json | 12067 ++++++------ .../keymind-cascade-v1.16.0-provider.json | 15535 ++++++++-------- 3 files changed, 14123 insertions(+), 13582 deletions(-) diff --git a/mesh-america/generate-mesh-america-catalogs.ps1 b/mesh-america/generate-mesh-america-catalogs.ps1 index c83d668d..851b86f2 100644 --- a/mesh-america/generate-mesh-america-catalogs.ps1 +++ b/mesh-america/generate-mesh-america-catalogs.ps1 @@ -8,16 +8,30 @@ $Catalogs = @( @{ Name = 'non-logging' SourceDir = Join-Path $Root '.releases\non-logging' - Tag = 'v1.16.0-halo-keymind-dev-28ee5d2c' + ReleaseTag = 'v1.16.01-halo-keymind-dev-ebd7da79' + FileTags = @( + 'v1.16.02-halo-keymind-dev-6681ef79', + 'v1.16.01-halo-keymind-dev-ebd7da79' + ) Output = Join-Path $OutputDir 'keymind-cascade-v1.16.0-provider.json' - Description = 'Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.' + Description = 'Keymind Cascade MeshCore dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.' + VersionDescriptions = @{ + 'v1.16.02-halo-keymind-dev-6681ef79' = 'Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.' + 'v1.16.01-halo-keymind-dev-ebd7da79' = 'Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.' + } }, @{ Name = 'logging' SourceDir = Join-Path $Root '.releases\logging' - Tag = 'logging-v1.16.0-halo-keymind-dev-28ee5d2c' + ReleaseTag = 'logging-v1.16.01-halo-keymind-dev-ebd7da79' + FileTags = @( + 'logging-v1.16.01-halo-keymind-dev-ebd7da79' + ) Output = Join-Path $OutputDir 'keymind-cascade-logging-v1.16.0-provider.json' - Description = 'Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.' + Description = 'Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.' + VersionDescriptions = @{ + 'logging-v1.16.01-halo-keymind-dev-ebd7da79' = 'Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.' + } } ) @@ -52,6 +66,7 @@ $RolePatterns = @( @{ Suffix = 'companion_usb'; Role = 'companionUsb'; Title = 'Companion USB'; SubTitle = $null }, @{ Suffix = 'comp_radio_usb'; Role = 'companionUsb'; Title = 'Companion USB'; SubTitle = $null }, @{ Suffix = 'companion_radio_serial'; Role = 'companionUsb'; Title = 'Companion USB'; SubTitle = 'Serial' }, + @{ Suffix = 'companion_radio_wifi_'; Role = 'companionWifi'; Title = 'Companion WiFi'; SubTitle = 'Wi-Fi companion interface' }, @{ Suffix = 'companion_radio_wifi'; Role = 'companionWifi'; Title = 'Companion WiFi'; SubTitle = 'Wi-Fi companion interface' }, @{ Suffix = 'repeater_bridge_rs232_serial1'; Role = 'repeater'; Title = 'Repeater Bridge RS232'; SubTitle = 'Serial 1' }, @{ Suffix = 'repeater_bridge_rs232_serial2'; Role = 'repeater'; Title = 'Repeater Bridge RS232'; SubTitle = 'Serial 2' }, @@ -65,6 +80,7 @@ $RolePatterns = @( @{ Suffix = 'room_server_'; Role = 'roomServer'; Title = 'Room Server'; SubTitle = $null }, @{ Suffix = 'room_server'; Role = 'roomServer'; Title = 'Room Server'; SubTitle = $null }, @{ Suffix = 'room_svr'; Role = 'roomServer'; Title = 'Room Server'; SubTitle = $null }, + @{ Suffix = 'terminal_chat_'; Role = 'terminalChat'; Title = 'Terminal Chat'; SubTitle = 'Serial terminal chat' }, @{ Suffix = 'terminal_chat'; Role = 'terminalChat'; Title = 'Terminal Chat'; SubTitle = 'Serial terminal chat' }, @{ Suffix = 'sensor'; Role = 'sensor'; Title = 'Sensor'; SubTitle = 'Sensor telemetry node' } ) @@ -506,6 +522,39 @@ function Get-DownloadUrl { return "https://github.com/$Repo/releases/download/$Tag/$escapedName" } +function Get-FileTagInfo { + param( + [string]$Stem, + [hashtable]$Definition, + [string]$FileName + ) + + foreach ($tag in $Definition.FileTags) { + $suffix = "-$tag" + if ($Stem.EndsWith($suffix, [StringComparison]::Ordinal)) { + return [pscustomobject]@{ + Tag = $tag + DeviceRole = $Stem.Substring(0, $Stem.Length - $suffix.Length) + } + } + } + + throw "File '$FileName' does not end with any expected tag: $($Definition.FileTags -join ', ')" +} + +function Get-VersionDescription { + param( + [hashtable]$Definition, + [string]$Tag + ) + + if ($Definition.ContainsKey('VersionDescriptions') -and $Definition.VersionDescriptions.ContainsKey($Tag)) { + return $Definition.VersionDescriptions[$Tag] + } + + return $Definition.Description +} + function New-Catalog { param([hashtable]$Definition) @@ -524,16 +573,13 @@ function New-Catalog { $stem = $stem.Substring(0, $stem.Length - '-merged'.Length) } - $suffix = "-$($Definition.Tag)" - if (-not $stem.EndsWith($suffix, [StringComparison]::Ordinal)) { - throw "File '$($file.Name)' does not end with expected tag '$($Definition.Tag)'" - } - - $deviceRole = $stem.Substring(0, $stem.Length - $suffix.Length) + $fileTagInfo = Get-FileTagInfo -Stem $stem -Definition $Definition -FileName $file.Name + $deviceRole = $fileTagInfo.DeviceRole $roleInfo = Get-RoleInfo $deviceRole [pscustomobject]@{ File = $file + FileTag = $fileTagInfo.Tag DeviceKey = $roleInfo.DeviceKey MakerKey = Get-DeviceMakerKey $roleInfo.DeviceKey DeviceName = $roleInfo.DeviceName @@ -564,20 +610,6 @@ function New-Catalog { foreach ($roleGroup in $firmwareGroups) { $first = $roleGroup.Group[0] - $files = @( - $roleGroup.Group | - Sort-Object @{ Expression = { Get-FileSortRank (Get-FileType $_.File $deviceType) $_.File.Name } }, @{ Expression = { $_.File.Name } } | - ForEach-Object { - $type = Get-FileType $_.File $deviceType - [ordered]@{ - type = $type - name = $_.File.Name - url = Get-DownloadUrl $Definition.Tag $_.File.Name - title = Get-FileTitle $type $_.File.Name - } - } - ) - $firmwareEntry = [ordered]@{ role = $first.Role title = $first.Title @@ -587,13 +619,30 @@ function New-Catalog { $firmwareEntry.subTitle = $first.SubTitle } - $versionNotes = Join-VersionNotes -Description $Definition.Description -DeviceKeys @($roleGroup.Group | ForEach-Object { $_.DeviceKey }) -Role $first.Role - $firmwareEntry.version = [ordered]@{ - $Definition.Tag = [ordered]@{ + $versionMap = [ordered]@{} + foreach ($versionGroup in @($roleGroup.Group | Group-Object FileTag | Sort-Object Name -Descending)) { + $files = @( + $versionGroup.Group | + Sort-Object @{ Expression = { Get-FileSortRank (Get-FileType $_.File $deviceType) $_.File.Name } }, @{ Expression = { $_.File.Name } } | + ForEach-Object { + $type = Get-FileType $_.File $deviceType + [ordered]@{ + type = $type + name = $_.File.Name + url = Get-DownloadUrl $Definition.ReleaseTag $_.File.Name + title = Get-FileTitle $type $_.File.Name + } + } + ) + + $versionDescription = Get-VersionDescription -Definition $Definition -Tag $versionGroup.Name + $versionNotes = Join-VersionNotes -Description $versionDescription -DeviceKeys @($versionGroup.Group | ForEach-Object { $_.DeviceKey }) -Role $first.Role + $versionMap[$versionGroup.Name] = [ordered]@{ notes = $versionNotes files = $files } } + $firmwareEntry.version = $versionMap [void]$firmware.Add($firmwareEntry) } diff --git a/mesh-america/keymind-cascade-logging-v1.16.0-provider.json b/mesh-america/keymind-cascade-logging-v1.16.0-provider.json index d1fcf443..b6fe0512 100644 --- a/mesh-america/keymind-cascade-logging-v1.16.0-provider.json +++ b/mesh-america/keymind-cascade-logging-v1.16.0-provider.json @@ -1,5 +1,5 @@ { - "description": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "description": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", "maker": { "ebyte": { "name": "Ebyte" @@ -95,69 +95,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Ebyte_EoRa-S3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Ebyte_EoRa-S3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Ebyte_EoRa-S3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Ebyte_EoRa-S3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Ebyte_EoRa-S3_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Ebyte_EoRa-S3_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Ebyte_EoRa-S3_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Ebyte_EoRa-S3_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Ebyte_EoRa-S3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Ebyte_EoRa-S3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Ebyte_EoRa-S3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Ebyte_EoRa-S3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -165,23 +165,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Ebyte_EoRa-S3_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Ebyte_EoRa-S3_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Ebyte_EoRa-S3_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Ebyte_EoRa-S3_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -195,69 +195,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -271,23 +271,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -295,23 +295,23 @@ "title": "Companion USB", "subTitle": "Serial", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -319,92 +319,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_Repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_Repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_Repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_Repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_Repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_Repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_Repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_Repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -412,23 +412,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -442,69 +442,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -518,23 +518,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -542,23 +542,23 @@ "title": "Companion USB", "subTitle": "Serial", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -566,92 +566,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_Repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_Repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_Repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_Repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_Repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_Repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_Repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_Repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_Repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_Repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -659,23 +659,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -689,69 +689,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M6_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M6_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M6_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M6_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M6_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M6_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M6_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M6_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M6_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M6_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M6_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M6_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -765,69 +765,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "GAT562_30S_Mesh_Kit_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_30S_Mesh_Kit_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "GAT562_30S_Mesh_Kit_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_30S_Mesh_Kit_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "GAT562_30S_Mesh_Kit_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_30S_Mesh_Kit_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "GAT562_30S_Mesh_Kit_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_30S_Mesh_Kit_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "GAT562_30S_Mesh_Kit_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_30S_Mesh_Kit_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "GAT562_30S_Mesh_Kit_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_30S_Mesh_Kit_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -841,46 +841,46 @@ "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_EVB_Pro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_EVB_Pro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_EVB_Pro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_EVB_Pro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_EVB_Pro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_EVB_Pro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_EVB_Pro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_EVB_Pro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_EVB_Pro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_EVB_Pro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_EVB_Pro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_EVB_Pro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_EVB_Pro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_EVB_Pro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_EVB_Pro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_EVB_Pro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -894,69 +894,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_Tracker_Pro_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_Tracker_Pro_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_Tracker_Pro_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_Tracker_Pro_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_Tracker_Pro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_Tracker_Pro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_Tracker_Pro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_Tracker_Pro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_Tracker_Pro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_Tracker_Pro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_Tracker_Pro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_Tracker_Pro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -970,92 +970,92 @@ "role": "repeater", "title": "Repeater - SX1262", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_E22_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_E22_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_E22_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_E22_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater - SX1268", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_E22_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_E22_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_E22_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_E22_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1262", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_E22_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_E22_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_E22_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_E22_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1268", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_E22_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_E22_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_E22_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_E22_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -1069,69 +1069,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_ESPNOW_comp_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_comp_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_ESPNOW_comp_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_comp_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_ESPNOW_comp_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_comp_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_ESPNOW_comp_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_comp_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_ESPNOW_repeatr-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_repeatr-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_ESPNOW_repeatr-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_repeatr-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_ESPNOW_repeatr-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_repeatr-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_ESPNOW_repeatr-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_repeatr-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_ESPNOW_room_svr-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_room_svr-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_ESPNOW_room_svr-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_room_svr-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_ESPNOW_room_svr-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_room_svr-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_ESPNOW_room_svr-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_room_svr-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -1139,23 +1139,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_ESPNOW_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_ESPNOW_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_ESPNOW_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_ESPNOW_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -1169,69 +1169,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_ct62_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_ct62_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_ct62_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_ct62_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_ct62_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_ct62_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_ct62_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_ct62_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_ct62_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_ct62_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_ct62_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_ct62_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -1239,23 +1239,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_ct62_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_ct62_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_ct62_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_ct62_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -1269,92 +1269,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Paper_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Paper_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Paper_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Paper_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Paper_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Paper_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Paper_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Paper_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Paper_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Paper_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Paper_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Paper_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Paper_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Paper_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Paper_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Paper_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -1368,92 +1368,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -1461,23 +1461,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -1491,69 +1491,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -1567,69 +1567,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Mesh_pocket_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Mesh_pocket_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Mesh_pocket_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Mesh_pocket_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Mesh_pocket_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Mesh_pocket_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Mesh_pocket_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Mesh_pocket_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Mesh_pocket_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Mesh_pocket_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Mesh_pocket_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Mesh_pocket_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -1643,69 +1643,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_mesh_solar_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_mesh_solar_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_mesh_solar_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_mesh_solar_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_mesh_solar_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_mesh_solar_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_mesh_solar_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_mesh_solar_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_mesh_solar_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_mesh_solar_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_mesh_solar_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_mesh_solar_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -1719,23 +1719,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -1743,69 +1743,69 @@ "title": "Companion USB", "subTitle": "Without display", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_without_display_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_without_display_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_without_display_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_without_display_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -1813,23 +1813,23 @@ "title": "Repeater Bridge RS232", "subTitle": "Without display", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_without_display_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_without_display_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_without_display_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_without_display_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -1837,46 +1837,46 @@ "title": "Repeater", "subTitle": "Without display", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_without_display_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_without_display_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_without_display_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_without_display_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -1884,23 +1884,99 @@ "title": "Room Server", "subTitle": "Without display", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_without_display_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_without_display_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_without_display_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_without_display_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } + } + } + ] + }, + { + "maker": "heltec", + "name": "Heltec tower v2", + "type": "nrf52", + "firmware": [ + { + "role": "companionUsb", + "title": "Companion USB", + "version": { + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_tower_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_tower_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } + } + }, + { + "role": "repeater", + "title": "Repeater", + "version": { + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_tower_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_tower_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } + } + }, + { + "role": "roomServer", + "title": "Room Server", + "version": { + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Heltec_tower_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_tower_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -1914,23 +1990,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -1938,92 +2014,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2031,23 +2107,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -2061,23 +2137,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2085,115 +2161,115 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2201,23 +2277,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2225,23 +2301,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -2255,23 +2331,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2279,23 +2355,23 @@ "title": "Companion USB", "subTitle": "TFT", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2303,23 +2379,23 @@ "title": "Companion WiFi", "subTitle": "TFT, Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2327,69 +2403,69 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2397,23 +2473,23 @@ "title": "Repeater Bridge ESP-NOW", "subTitle": "TFT", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2421,46 +2497,46 @@ "title": "Repeater", "subTitle": "TFT", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2468,23 +2544,23 @@ "title": "Room Server", "subTitle": "TFT", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2492,23 +2568,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2516,23 +2592,23 @@ "title": "Sensor", "subTitle": "TFT, Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2540,23 +2616,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2564,23 +2640,23 @@ "title": "Terminal Chat", "subTitle": "TFT, Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -2595,23 +2671,23 @@ "title": "Repeater", "subTitle": "Expansion Kit", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_expansionkit_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_expansionkit_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_expansionkit_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_expansionkit_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_expansionkit_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_expansionkit_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_expansionkit_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_expansionkit_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -2625,92 +2701,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E213_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E213_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E213_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E213_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E213_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E213_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E213_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E213_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E213_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E213_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E213_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E213_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E213_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E213_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E213_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E213_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -2724,92 +2800,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E290_companion_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_companion_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E290_companion_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_companion_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E290_companion_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_companion_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E290_companion_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_companion_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E290_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E290_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E290_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E290_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E290_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E290_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E290_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E290_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E290_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E290_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E290_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E290_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -2823,92 +2899,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_T190_companion_radio_usb_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_companion_radio_usb_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_T190_companion_radio_usb_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_companion_radio_usb_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_T190_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_T190_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_T190_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_T190_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_T190_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_T190_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_T190_repeater_bridge_espnow_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_repeater_bridge_espnow_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_T190_repeater_bridge_espnow_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_repeater_bridge_espnow_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_T190_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_T190_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_T190_room_server_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_room_server_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_T190_room_server_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_room_server_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_T190_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_T190_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -2922,92 +2998,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Tracker_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Tracker_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Tracker_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Tracker_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Tracker_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Tracker_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Tracker_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Tracker_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Tracker_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Tracker_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Tracker_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Tracker_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Tracker_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Tracker_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Tracker_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Tracker_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -3021,23 +3097,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3045,92 +3121,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3138,23 +3214,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3162,23 +3238,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -3192,23 +3268,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3216,115 +3292,115 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3332,23 +3408,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -3362,92 +3438,92 @@ "role": "companionUsb", "title": "Companion radio - 0.96 display", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 0.96 display rotated", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - No display", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_handheld_nrf_e22_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_handheld_nrf_e22_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_handheld_nrf_e22_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_handheld_nrf_e22_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - No display", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_handheld_nrf_e22_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_handheld_nrf_e22_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_handheld_nrf_e22_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_handheld_nrf_e22_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -3461,207 +3537,207 @@ "role": "companionUsb", "title": "Companion radio - 22dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_22dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_22dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_22dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_22dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 22dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_22dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_22dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_22dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_22dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 22dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_22dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_22dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_22dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_22dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 30dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_30dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_30dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_30dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_30dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 30dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 30dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 33dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_33dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_33dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_33dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_33dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 33dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_33dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_33dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_33dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_33dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 33dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_33dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_33dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_33dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_33dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -3675,207 +3751,207 @@ "role": "companionUsb", "title": "Companion radio - 22dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_22dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_22dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_22dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_22dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 22dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_22dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_22dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_22dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_22dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 22dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_22dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_22dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_22dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_22dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 30dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_30dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_30dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_30dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_30dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 30dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 30dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 33dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_33dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_33dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_33dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_33dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 33dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_33dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_33dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_33dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_33dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 33dBm", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_33dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_33dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_33dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_33dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -3889,69 +3965,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "KeepteenLT1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "KeepteenLT1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "KeepteenLT1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "KeepteenLT1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "KeepteenLT1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "KeepteenLT1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "KeepteenLT1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "KeepteenLT1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "KeepteenLT1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "KeepteenLT1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "KeepteenLT1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "KeepteenLT1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -3965,23 +4041,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3989,115 +4065,115 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4105,23 +4181,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -4135,92 +4211,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4228,23 +4304,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -4258,92 +4334,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1276_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1276_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1276_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1276_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1276_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1276_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1276_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1276_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1276_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1276_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1276_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1276_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1276_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1276_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1276_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1276_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4351,23 +4427,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1276_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1276_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1276_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1276_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -4381,69 +4457,69 @@ "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -4457,69 +4533,69 @@ "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1276_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1276_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1276_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1276_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1276_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1276_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1276_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1276_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1276_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1276_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1276_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1276_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -4534,23 +4610,23 @@ "title": "Companion USB", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4558,23 +4634,23 @@ "title": "Companion WiFi", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38, Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4582,23 +4658,23 @@ "title": "Repeater Bridge ESP-NOW", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4606,23 +4682,23 @@ "title": "Repeater", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4630,23 +4706,23 @@ "title": "Room Server", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -4661,92 +4737,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "T_Beam_S3_Supreme_SX1262_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "T_Beam_S3_Supreme_SX1262_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "T_Beam_S3_Supreme_SX1262_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "T_Beam_S3_Supreme_SX1262_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "T_Beam_S3_Supreme_SX1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "T_Beam_S3_Supreme_SX1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "T_Beam_S3_Supreme_SX1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "T_Beam_S3_Supreme_SX1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "T_Beam_S3_Supreme_SX1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "T_Beam_S3_Supreme_SX1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "T_Beam_S3_Supreme_SX1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "T_Beam_S3_Supreme_SX1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -4760,46 +4836,46 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TDeck_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TDeck_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TDeck_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TDeck_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TDeck_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TDeck_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TDeck_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TDeck_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TDeck_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TDeck_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TDeck_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TDeck_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TDeck_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TDeck_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TDeck_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TDeck_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -4813,69 +4889,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -4889,69 +4965,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_Card_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_Card_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_Card_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_Card_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_Card_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_Card_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_Card_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_Card_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_Card_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_Card_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_Card_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_Card_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -4966,69 +5042,69 @@ "title": "Companion USB", "subTitle": "Non shell", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo-Lite_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo-Lite_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo-Lite_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo-Lite_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo-Lite_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo-Lite_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo-Lite_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo-Lite_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -5042,69 +5118,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TETH_Elite_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TETH_Elite_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TETH_Elite_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TETH_Elite_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TETH_Elite_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TETH_Elite_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TETH_Elite_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TETH_Elite_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TETH_Elite_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TETH_Elite_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TETH_Elite_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TETH_Elite_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -5118,23 +5194,23 @@ "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T_Impulse_Plus_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T_Impulse_Plus_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T_Impulse_Plus_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T_Impulse_Plus_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T_Impulse_Plus_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T_Impulse_Plus_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T_Impulse_Plus_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T_Impulse_Plus_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -5148,46 +5224,46 @@ "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_Tlora_C6_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_Tlora_C6_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_Tlora_C6_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_Tlora_C6_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_Tlora_C6_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_Tlora_C6_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_Tlora_C6_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_Tlora_C6_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_Tlora_C6_room_server_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_Tlora_C6_room_server_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_Tlora_C6_room_server_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_Tlora_C6_room_server_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_Tlora_C6_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_Tlora_C6_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_Tlora_C6_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_Tlora_C6_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -5201,69 +5277,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "M5Stack_Unit_C6L_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "M5Stack_Unit_C6L_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "M5Stack_Unit_C6L_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "M5Stack_Unit_C6L_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "M5Stack_Unit_C6L_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "M5Stack_Unit_C6L_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "M5Stack_Unit_C6L_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "M5Stack_Unit_C6L_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "M5Stack_Unit_C6L_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "M5Stack_Unit_C6L_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "M5Stack_Unit_C6L_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "M5Stack_Unit_C6L_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -5277,184 +5353,184 @@ "role": "companionUsb", "title": "Companion radio - SX1262", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - SX1268", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1268_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1268_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1268_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1268_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater - SX1262", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater - SX1268", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1262", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1268", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - SX1262", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - SX1268", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1268_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1268_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1268_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1268_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5462,23 +5538,23 @@ "title": "Terminal Chat - SX1262", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1262_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1262_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1262_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1262_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5486,23 +5562,23 @@ "title": "Terminal Chat - SX1268", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1268_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1268_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1268_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1268_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -5516,23 +5592,23 @@ "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshimi_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshimi_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshimi_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshimi_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshimi_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshimi_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshimi_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshimi_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -5546,23 +5622,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Meshtiny_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshtiny_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Meshtiny_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Meshtiny_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Meshtiny_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshtiny_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Meshtiny_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Meshtiny_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -5576,69 +5652,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Minewsemi_me25ls01_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Minewsemi_me25ls01_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Minewsemi_me25ls01_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Minewsemi_me25ls01_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Minewsemi_me25ls01_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Minewsemi_me25ls01_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Minewsemi_me25ls01_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Minewsemi_me25ls01_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Minewsemi_me25ls01_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Minewsemi_me25ls01_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Minewsemi_me25ls01_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Minewsemi_me25ls01_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -5646,23 +5722,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash", - "name": "Minewsemi_me25ls01_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Minewsemi_me25ls01_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash", + "name": "Minewsemi_me25ls01_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Minewsemi_me25ls01_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -5676,69 +5752,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "R1Neo_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "R1Neo_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "R1Neo_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "R1Neo_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "R1Neo_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "R1Neo_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "R1Neo_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "R1Neo_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "R1Neo_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "R1Neo_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "R1Neo_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "R1Neo_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -5746,23 +5822,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "R1Neo_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "R1Neo_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "R1Neo_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "R1Neo_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -5770,23 +5846,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash", - "name": "R1Neo_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "R1Neo_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash", + "name": "R1Neo_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "R1Neo_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -5800,23 +5876,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5824,92 +5900,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_companion_radio_wifi_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_companion_radio_wifi_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_companion_radio_wifi_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_companion_radio_wifi_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5917,23 +5993,170 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_terminal_chat_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_terminal_chat_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_terminal_chat_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_terminal_chat_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } + } + } + ] + }, + { + "maker": "generic", + "name": "nibble zero connect", + "type": "esp32", + "firmware": [ + { + "role": "companionUsb", + "title": "Companion USB", + "version": { + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_companion_radio_usb_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } + } + }, + { + "role": "companionWifi", + "title": "Companion WiFi", + "subTitle": "Wi-Fi companion interface", + "version": { + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_companion_radio_wifi_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_companion_radio_wifi_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_companion_radio_wifi_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_companion_radio_wifi_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } + } + }, + { + "role": "repeater", + "title": "Repeater", + "version": { + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } + } + }, + { + "role": "repeater", + "title": "Repeater Bridge ESP-NOW", + "version": { + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_repeater_bridge_espnow_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } + } + }, + { + "role": "roomServer", + "title": "Room Server", + "version": { + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_room_server_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } + } + }, + { + "role": "terminalChat", + "title": "Terminal Chat", + "subTitle": "Serial terminal chat", + "version": { + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_terminal_chat_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_terminal_chat_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_terminal_chat_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_terminal_chat_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -5947,46 +6170,46 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ProMicro_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ProMicro_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ProMicro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ProMicro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -5994,46 +6217,46 @@ "title": "Repeater Bridge RS232", "subTitle": "Serial 1", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ProMicro_repeater_bridge_rs232_serial1-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_repeater_bridge_rs232_serial1-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_repeater_bridge_rs232_serial1-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_repeater_bridge_rs232_serial1-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ProMicro_repeater_bridge_rs232_serial1-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_repeater_bridge_rs232_serial1-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_repeater_bridge_rs232_serial1-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_repeater_bridge_rs232_serial1-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "ProMicro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "ProMicro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -6041,23 +6264,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "ProMicro_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "ProMicro_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -6065,23 +6288,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash", - "name": "ProMicro_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash", + "name": "ProMicro_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -6095,92 +6318,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "RAK_11310_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "RAK_11310_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "RAK_11310_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "RAK_11310_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "RAK_11310_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "RAK_11310_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "RAK_11310_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "RAK_11310_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "RAK_11310_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "RAK_11310_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "RAK_11310_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "RAK_11310_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "RAK_11310_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "RAK_11310_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "RAK_11310_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "RAK_11310_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -6188,23 +6411,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "download", - "name": "RAK_11310_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "RAK_11310_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "download", + "name": "RAK_11310_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "RAK_11310_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } } ] @@ -6218,46 +6441,46 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "RAK_3x72_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "RAK_3x72_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "RAK_3x72_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "RAK_3x72_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "RAK_3x72_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "RAK_3x72_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "RAK_3x72_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "RAK_3x72_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -6265,23 +6488,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "download", - "name": "RAK_3x72_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "RAK_3x72_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "download", + "name": "RAK_3x72_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "RAK_3x72_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } } ] @@ -6295,46 +6518,46 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -6342,23 +6565,23 @@ "title": "Repeater Bridge RS232", "subTitle": "Serial 1", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_repeater_bridge_rs232_serial1-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater_bridge_rs232_serial1-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_repeater_bridge_rs232_serial1-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater_bridge_rs232_serial1-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_repeater_bridge_rs232_serial1-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater_bridge_rs232_serial1-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_repeater_bridge_rs232_serial1-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater_bridge_rs232_serial1-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -6366,46 +6589,46 @@ "title": "Repeater Bridge RS232", "subTitle": "Serial 2", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_repeater_bridge_rs232_serial2-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater_bridge_rs232_serial2-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_repeater_bridge_rs232_serial2-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater_bridge_rs232_serial2-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_repeater_bridge_rs232_serial2-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater_bridge_rs232_serial2-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_repeater_bridge_rs232_serial2-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater_bridge_rs232_serial2-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -6413,23 +6636,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -6437,23 +6660,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -6467,23 +6690,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -6491,115 +6714,115 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -6607,23 +6830,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -6631,23 +6854,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -6661,69 +6884,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "RAK_3401_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_3401_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "RAK_3401_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_3401_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "RAK_3401_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_3401_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "RAK_3401_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_3401_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "RAK_3401_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_3401_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "RAK_3401_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_3401_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -6731,23 +6954,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "RAK_3401_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_3401_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "RAK_3401_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_3401_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -6755,23 +6978,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash", - "name": "RAK_3401_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_3401_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash", + "name": "RAK_3401_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_3401_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -6785,69 +7008,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "RAK_WisMesh_Tag_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_WisMesh_Tag_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "RAK_WisMesh_Tag_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_WisMesh_Tag_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "RAK_WisMesh_Tag_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_WisMesh_Tag_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "RAK_WisMesh_Tag_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_WisMesh_Tag_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "RAK_WisMesh_Tag_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_WisMesh_Tag_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "RAK_WisMesh_Tag_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_WisMesh_Tag_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -6855,23 +7078,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "RAK_WisMesh_Tag_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_WisMesh_Tag_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "RAK_WisMesh_Tag_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_WisMesh_Tag_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -6885,69 +7108,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "PicoW_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "PicoW_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "PicoW_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/PicoW_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "PicoW_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/PicoW_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "PicoW_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "PicoW_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "PicoW_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/PicoW_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "PicoW_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/PicoW_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "PicoW_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "PicoW_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "PicoW_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/PicoW_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "PicoW_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/PicoW_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -6955,23 +7178,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "download", - "name": "PicoW_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "PicoW_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "download", + "name": "PicoW_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/PicoW_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "PicoW_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/PicoW_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } } ] @@ -6985,92 +7208,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "waveshare_rp2040_lora_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "waveshare_rp2040_lora_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "waveshare_rp2040_lora_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "waveshare_rp2040_lora_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "waveshare_rp2040_lora_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "waveshare_rp2040_lora_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "waveshare_rp2040_lora_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "waveshare_rp2040_lora_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "waveshare_rp2040_lora_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "waveshare_rp2040_lora_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "waveshare_rp2040_lora_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "waveshare_rp2040_lora_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "waveshare_rp2040_lora_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "waveshare_rp2040_lora_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "waveshare_rp2040_lora_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "waveshare_rp2040_lora_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -7078,23 +7301,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "download", - "name": "waveshare_rp2040_lora_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "waveshare_rp2040_lora_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "download", + "name": "waveshare_rp2040_lora_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "waveshare_rp2040_lora_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } } ] @@ -7108,23 +7331,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "SenseCapIndicator-ESPNow_comp_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/SenseCapIndicator-ESPNow_comp_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "SenseCapIndicator-ESPNow_comp_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/SenseCapIndicator-ESPNow_comp_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "SenseCapIndicator-ESPNow_comp_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/SenseCapIndicator-ESPNow_comp_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "SenseCapIndicator-ESPNow_comp_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/SenseCapIndicator-ESPNow_comp_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -7138,69 +7361,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "SenseCap_Solar_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "SenseCap_Solar_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "SenseCap_Solar_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "SenseCap_Solar_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "SenseCap_Solar_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "SenseCap_Solar_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "SenseCap_Solar_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "SenseCap_Solar_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "SenseCap_Solar_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "SenseCap_Solar_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "SenseCap_Solar_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "SenseCap_Solar_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -7214,69 +7437,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "t1000e_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "t1000e_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "t1000e_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/t1000e_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "t1000e_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/t1000e_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "t1000e_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "t1000e_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "t1000e_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/t1000e_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "t1000e_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/t1000e_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "t1000e_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "t1000e_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "t1000e_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/t1000e_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "t1000e_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/t1000e_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -7290,69 +7513,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "WioTrackerL1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "WioTrackerL1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "WioTrackerL1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "WioTrackerL1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "WioTrackerL1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "WioTrackerL1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "WioTrackerL1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "WioTrackerL1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "WioTrackerL1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "WioTrackerL1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "WioTrackerL1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "WioTrackerL1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -7366,34 +7589,34 @@ "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "wio_wm1110_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio_wm1110_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "wio_wm1110_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio_wm1110_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "wio_wm1110_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio_wm1110_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "wio_wm1110_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio_wm1110_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -7407,115 +7630,115 @@ "role": "companionUsb", "title": "Companion radio - Wio-E5", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "wio-e5_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "wio-e5_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - Wio-E5 mini", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "wio-e5-mini_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5-mini_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "wio-e5-mini_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5-mini_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - Wio-E5", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "wio-e5_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "wio-e5_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - Wio-E5 mini", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "wio-e5-mini_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5-mini_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "wio-e5-mini_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5-mini_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232 - Wio-E5", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "wio-e5-repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5-repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-repeater_bridge_rs232-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "wio-e5-repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5-repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-repeater_bridge_rs232-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -7523,23 +7746,23 @@ "title": "Sensor - Wio-E5 mini", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "download", - "name": "wio-e5-mini_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5-mini_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "download", + "name": "wio-e5-mini_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5-mini_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } } ] @@ -7553,23 +7776,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -7577,69 +7800,69 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -7653,23 +7876,23 @@ "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C6_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C6_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C6_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C6_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C6_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C6_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C6_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C6_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -7683,69 +7906,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Xiao_nrf52_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Xiao_nrf52_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Xiao_nrf52_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Xiao_nrf52_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Xiao_nrf52_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Xiao_nrf52_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Xiao_nrf52_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Xiao_nrf52_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Xiao_nrf52_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Xiao_nrf52_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Xiao_nrf52_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Xiao_nrf52_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -7759,69 +7982,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "Xiao_rp2040_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "Xiao_rp2040_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "Xiao_rp2040_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "Xiao_rp2040_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "Xiao_rp2040_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "Xiao_rp2040_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "Xiao_rp2040_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "Xiao_rp2040_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "Xiao_rp2040_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "Xiao_rp2040_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "Xiao_rp2040_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "Xiao_rp2040_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -7829,23 +8052,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "download", - "name": "Xiao_rp2040_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "Xiao_rp2040_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "download", + "name": "Xiao_rp2040_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "Xiao_rp2040_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } } ] @@ -7860,23 +8083,23 @@ "title": "Companion USB", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -7884,23 +8107,23 @@ "title": "Repeater Bridge ESP-NOW", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -7908,23 +8131,23 @@ "title": "Repeater", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -7932,23 +8155,23 @@ "title": "Room Server", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -7956,23 +8179,23 @@ "title": "Sensor", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4, Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -7986,23 +8209,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8010,23 +8233,23 @@ "title": "Companion USB", "subTitle": "Serial", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_serial-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_serial-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8034,92 +8257,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8127,23 +8350,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8151,23 +8374,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_terminal_chat-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_terminal_chat-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -8181,92 +8404,92 @@ "role": "repeater", "title": "Repeater - SX1262", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Tenstar_C3_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tenstar_C3_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1262_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Tenstar_C3_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tenstar_C3_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1262_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater - SX1268", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Tenstar_C3_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tenstar_C3_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1268_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Tenstar_C3_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tenstar_C3_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1268_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1262", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Tenstar_C3_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tenstar_C3_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1262_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Tenstar_C3_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tenstar_C3_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1262_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1268", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Tenstar_C3_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tenstar_C3_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1268_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Tenstar_C3_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tenstar_C3_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1268_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -8280,46 +8503,46 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "Tiny_Relay_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "Tiny_Relay_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "Tiny_Relay_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "Tiny_Relay_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "download", - "name": "Tiny_Relay_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "Tiny_Relay_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "download", + "name": "Tiny_Relay_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "Tiny_Relay_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -8327,23 +8550,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "download", - "name": "Tiny_Relay_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "Tiny_Relay_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_sensor-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "download", + "name": "Tiny_Relay_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "Tiny_Relay_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_sensor-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } } ] @@ -8357,69 +8580,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Nano_G2_Ultra_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Nano_G2_Ultra_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Nano_G2_Ultra_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Nano_G2_Ultra_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Nano_G2_Ultra_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Nano_G2_Ultra_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Nano_G2_Ultra_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Nano_G2_Ultra_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash", - "name": "Nano_G2_Ultra_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Nano_G2_Ultra_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash", + "name": "Nano_G2_Ultra_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Nano_G2_Ultra_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -8433,23 +8656,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8457,69 +8680,69 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8527,23 +8750,23 @@ "title": "Repeater Bridge ESP-NOW", "subTitle": "Logging", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_logging_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_logging_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_logging_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_logging_repeater_bridge_espnow-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_logging_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_logging_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_logging_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_logging_repeater_bridge_espnow-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8551,46 +8774,46 @@ "title": "Repeater", "subTitle": "Logging", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_logging_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_logging_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_logging_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_logging_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_logging_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_logging_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_logging_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_logging_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -8604,23 +8827,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G3_ESP32_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G3_ESP32_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_companion_radio_usb-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G3_ESP32_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G3_ESP32_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_companion_radio_usb-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8628,46 +8851,46 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G3_ESP32_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G3_ESP32_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_companion_radio_wifi-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G3_ESP32_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G3_ESP32_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_companion_radio_wifi-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G3_ESP32_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G3_ESP32_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G3_ESP32_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G3_ESP32_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8675,46 +8898,46 @@ "title": "Repeater", "subTitle": "Logging", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G3_ESP32_logging_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_logging_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G3_ESP32_logging_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_logging_repeater-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G3_ESP32_logging_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_logging_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G3_ESP32_logging_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_logging_repeater-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G3_ESP32_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G3_ESP32_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_room_server-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G3_ESP32_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G3_ESP32_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_room_server-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -8728,23 +8951,23 @@ "role": "repeater", "title": "Repeater", "version": { - "logging-v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", - "files": [ - { - "type": "flash-wipe", - "name": "WHY2025_badge_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/WHY2025_badge_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "WHY2025_badge_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.0-halo-keymind-dev-28ee5d2c/WHY2025_badge_repeater_-logging-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "logging-v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning, Cascade defaults, and extra logging enabled for diagnostics.", + "files": [ + { + "type": "flash-wipe", + "name": "WHY2025_badge_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/WHY2025_badge_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "WHY2025_badge_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/logging-v1.16.01-halo-keymind-dev-ebd7da79/WHY2025_badge_repeater_-logging-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] diff --git a/mesh-america/keymind-cascade-v1.16.0-provider.json b/mesh-america/keymind-cascade-v1.16.0-provider.json index b4784d2c..04a51df6 100644 --- a/mesh-america/keymind-cascade-v1.16.0-provider.json +++ b/mesh-america/keymind-cascade-v1.16.0-provider.json @@ -1,5 +1,5 @@ { - "description": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "description": "Keymind Cascade MeshCore dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", "maker": { "ebyte": { "name": "Ebyte" @@ -95,92 +95,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Ebyte_EoRa-S3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Ebyte_EoRa-S3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Ebyte_EoRa-S3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Ebyte_EoRa-S3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Ebyte_EoRa-S3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Ebyte_EoRa-S3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Ebyte_EoRa-S3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Ebyte_EoRa-S3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Ebyte_EoRa-S3_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Ebyte_EoRa-S3_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Ebyte_EoRa-S3_Repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_Repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Ebyte_EoRa-S3_Repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_Repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Ebyte_EoRa-S3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Ebyte_EoRa-S3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Ebyte_EoRa-S3_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Ebyte_EoRa-S3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -188,23 +188,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Ebyte_EoRa-S3_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Ebyte_EoRa-S3_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Ebyte_EoRa-S3_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Ebyte_EoRa-S3_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Ebyte_EoRa-S3_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Ebyte_EoRa-S3_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -218,92 +218,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -317,46 +317,46 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -364,23 +364,23 @@ "title": "Companion USB", "subTitle": "Serial", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -388,92 +388,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_Repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_Repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_Repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_Repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_Repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_Repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_Repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_Repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_Repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_Repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_Repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_Repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -481,23 +481,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -511,92 +511,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -610,23 +610,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -634,46 +634,46 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -681,23 +681,23 @@ "title": "Companion USB", "subTitle": "Serial", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -705,92 +705,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_Repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_Repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_Repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_Repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_Repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_Repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_Repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_Repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_Repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_Repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_Repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_Repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_Repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -798,23 +798,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "ThinkNode_M5_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "ThinkNode_M5_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M5_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "ThinkNode_M5_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "ThinkNode_M5_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M5_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -828,92 +828,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M6_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M6_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M6_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M6_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M6_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M6_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M6_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M6_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M6_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M6_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M6_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M6_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ThinkNode_M6_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ThinkNode_M6_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ThinkNode_M6_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ThinkNode_M6_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ThinkNode_M6_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ThinkNode_M6_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -927,92 +927,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "GAT562_30S_Mesh_Kit_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_30S_Mesh_Kit_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "GAT562_30S_Mesh_Kit_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_30S_Mesh_Kit_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "GAT562_30S_Mesh_Kit_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_30S_Mesh_Kit_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "GAT562_30S_Mesh_Kit_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_30S_Mesh_Kit_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "GAT562_30S_Mesh_Kit_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_30S_Mesh_Kit_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "GAT562_30S_Mesh_Kit_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_30S_Mesh_Kit_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "GAT562_30S_Mesh_Kit_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_30S_Mesh_Kit_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_30S_Mesh_Kit_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "GAT562_30S_Mesh_Kit_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_30S_Mesh_Kit_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_30S_Mesh_Kit_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -1026,46 +1026,46 @@ "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_EVB_Pro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_EVB_Pro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_EVB_Pro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_EVB_Pro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_EVB_Pro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_EVB_Pro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_EVB_Pro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_EVB_Pro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_EVB_Pro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_EVB_Pro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_EVB_Pro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_EVB_Pro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_EVB_Pro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_EVB_Pro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_EVB_Pro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_EVB_Pro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -1079,92 +1079,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_Tracker_Pro_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_Tracker_Pro_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_Tracker_Pro_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_Tracker_Pro_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_Tracker_Pro_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_Tracker_Pro_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_Tracker_Pro_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_Tracker_Pro_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_Tracker_Pro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_Tracker_Pro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_Tracker_Pro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_Tracker_Pro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_Tracker_Pro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_Tracker_Pro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Tracker_Pro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_Tracker_Pro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_Tracker_Pro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Tracker_Pro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -1178,23 +1178,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "GAT562_Mesh_Watch13_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Watch13_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "GAT562_Mesh_Watch13_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/GAT562_Mesh_Watch13_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "GAT562_Mesh_Watch13_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Watch13_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "GAT562_Mesh_Watch13_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/GAT562_Mesh_Watch13_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -1208,92 +1208,92 @@ "role": "repeater", "title": "Repeater - SX1262", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_E22_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_E22_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_E22_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_E22_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater - SX1268", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_E22_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_E22_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_E22_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_E22_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1262", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_E22_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_E22_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_E22_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_E22_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1268", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_E22_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_E22_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_E22_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_E22_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_E22_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_E22_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -1307,69 +1307,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_ESPNOW_comp_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_comp_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_ESPNOW_comp_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_comp_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_ESPNOW_comp_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_comp_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_ESPNOW_comp_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_comp_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_ESPNOW_repeatr-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_repeatr-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_ESPNOW_repeatr-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_repeatr-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_ESPNOW_repeatr-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_repeatr-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_ESPNOW_repeatr-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_repeatr-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_ESPNOW_room_svr-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_room_svr-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_ESPNOW_room_svr-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_room_svr-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_ESPNOW_room_svr-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_room_svr-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_ESPNOW_room_svr-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_room_svr-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -1377,23 +1377,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Generic_ESPNOW_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Generic_ESPNOW_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Generic_ESPNOW_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Generic_ESPNOW_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Generic_ESPNOW_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Generic_ESPNOW_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -1407,23 +1407,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_ct62_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_ct62_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_ct62_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_ct62_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -1431,92 +1431,92 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_ct62_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_ct62_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_ct62_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_ct62_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_ct62_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_ct62_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_ct62_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_ct62_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_ct62_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_ct62_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_ct62_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_ct62_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_ct62_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_ct62_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_ct62_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_ct62_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -1524,23 +1524,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_ct62_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_ct62_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_ct62_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_ct62_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_ct62_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_ct62_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -1554,23 +1554,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Paper_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Paper_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Paper_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Paper_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -1578,115 +1578,115 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Paper_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Paper_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Paper_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Paper_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Paper_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Paper_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Paper_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Paper_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Paper_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Paper_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Paper_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Paper_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Paper_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Paper_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Paper_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Paper_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Paper_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Paper_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Paper_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Paper_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Paper_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Paper_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -1700,23 +1700,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -1724,23 +1724,23 @@ "title": "Companion BLE", "subTitle": "FEM off", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_companion_radio_ble_femoff-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_companion_radio_ble_femoff-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_companion_radio_ble_femoff-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_companion_radio_ble_femoff-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_companion_radio_ble_femoff-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_companion_radio_ble_femoff-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_companion_radio_ble_femoff-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_companion_radio_ble_femoff-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -1748,115 +1748,115 @@ "title": "Companion BLE", "subTitle": "FEM on", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_companion_radio_ble_femon-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_companion_radio_ble_femon-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_companion_radio_ble_femon-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_companion_radio_ble_femon-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_companion_radio_ble_femon-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_companion_radio_ble_femon-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_companion_radio_ble_femon-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_companion_radio_ble_femon-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -1864,23 +1864,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "Heltec_t096_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t096_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t096_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "Heltec_t096_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t096_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t096_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -1894,92 +1894,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -1993,92 +1993,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Mesh_pocket_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Mesh_pocket_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Mesh_pocket_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Mesh_pocket_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Mesh_pocket_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Mesh_pocket_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Mesh_pocket_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Mesh_pocket_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Mesh_pocket_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Mesh_pocket_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Mesh_pocket_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Mesh_pocket_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Mesh_pocket_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Mesh_pocket_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Mesh_pocket_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Mesh_pocket_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Mesh_pocket_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Mesh_pocket_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -2092,92 +2092,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_mesh_solar_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_mesh_solar_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_mesh_solar_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_mesh_solar_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_mesh_solar_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_mesh_solar_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_mesh_solar_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_mesh_solar_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_mesh_solar_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_mesh_solar_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_mesh_solar_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_mesh_solar_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_mesh_solar_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_mesh_solar_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_mesh_solar_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_mesh_solar_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_mesh_solar_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_mesh_solar_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -2191,23 +2191,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -2215,46 +2215,46 @@ "title": "Companion BLE", "subTitle": "Without display", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_without_display_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_without_display_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_without_display_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_without_display_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -2262,69 +2262,69 @@ "title": "Companion USB", "subTitle": "Without display", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_without_display_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_without_display_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_without_display_companion_radio_usb-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_companion_radio_usb-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_without_display_companion_radio_usb-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_companion_radio_usb-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -2332,23 +2332,23 @@ "title": "Repeater Bridge RS232", "subTitle": "Without display", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_without_display_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_without_display_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_without_display_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_without_display_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -2356,46 +2356,46 @@ "title": "Repeater", "subTitle": "Without display", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_without_display_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_without_display_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_without_display_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_without_display_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -2403,23 +2403,122 @@ "title": "Room Server", "subTitle": "Without display", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Heltec_t114_without_display_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Heltec_t114_without_display_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_t114_without_display_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_t114_without_display_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_t114_without_display_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_t114_without_display_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } + } + } + ] + }, + { + "maker": "heltec", + "name": "Heltec tower v2", + "type": "nrf52", + "firmware": [ + { + "role": "companionBle", + "title": "Companion BLE", + "version": { + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_tower_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_tower_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } + } + }, + { + "role": "companionUsb", + "title": "Companion USB", + "version": { + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_tower_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_tower_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } + } + }, + { + "role": "repeater", + "title": "Repeater", + "version": { + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_tower_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_tower_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } + } + }, + { + "role": "roomServer", + "title": "Room Server", + "version": { + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Heltec_tower_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Heltec_tower_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_tower_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -2433,23 +2532,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2457,46 +2556,46 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2504,92 +2603,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2597,23 +2696,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -2627,23 +2726,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2651,46 +2750,46 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2698,115 +2797,115 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2814,23 +2913,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2838,23 +2937,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_v3_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_v3_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_v3_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_v3_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_v3_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_v3_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -2868,23 +2967,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2892,23 +2991,23 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2916,23 +3015,23 @@ "title": "Companion BLE", "subTitle": "Power saving, FEM on", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_companion_radio_ble_ps_femon-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_ble_ps_femon-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_companion_radio_ble_ps_femon-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_ble_ps_femon-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_companion_radio_ble_ps_femon-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_ble_ps_femon-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_companion_radio_ble_ps_femon-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_ble_ps_femon-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2940,23 +3039,23 @@ "title": "Companion BLE", "subTitle": "TFT", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -2964,46 +3063,46 @@ "title": "Companion BLE", "subTitle": "v4.3, Power saving, FEM off", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_3_companion_radio_ble_ps_femoff-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_3_companion_radio_ble_ps_femoff-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_3_companion_radio_ble_ps_femoff-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_3_companion_radio_ble_ps_femoff-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_3_companion_radio_ble_ps_femoff-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_3_companion_radio_ble_ps_femoff-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_3_companion_radio_ble_ps_femoff-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_3_companion_radio_ble_ps_femoff-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3011,23 +3110,23 @@ "title": "Companion USB", "subTitle": "TFT", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_companion_radio_usb-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_companion_radio_usb-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_companion_radio_usb-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_companion_radio_usb-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3035,23 +3134,23 @@ "title": "Companion WiFi", "subTitle": "TFT, Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_companion_radio_wifi-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_companion_radio_wifi-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_companion_radio_wifi-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_companion_radio_wifi-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3059,69 +3158,69 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3129,23 +3228,23 @@ "title": "Repeater Bridge ESP-NOW", "subTitle": "TFT", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3153,46 +3252,46 @@ "title": "Repeater", "subTitle": "TFT", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3200,23 +3299,23 @@ "title": "Room Server", "subTitle": "TFT", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3224,23 +3323,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3248,23 +3347,23 @@ "title": "Sensor", "subTitle": "TFT, Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_sensor-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_sensor-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_sensor-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_sensor-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3272,23 +3371,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3296,23 +3395,23 @@ "title": "Terminal Chat", "subTitle": "TFT, Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_tft_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_tft_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_tft_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_tft_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_tft_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_tft_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -3327,23 +3426,23 @@ "title": "Companion BLE", "subTitle": "Expansion Kit TFT, Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_expansionkit_tft_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_expansionkit_tft_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_expansionkit_tft_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_expansionkit_tft_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_expansionkit_tft_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_expansionkit_tft_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_expansionkit_tft_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_expansionkit_tft_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3351,23 +3450,23 @@ "title": "Repeater", "subTitle": "Expansion Kit", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_v4_expansionkit_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_expansionkit_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_v4_expansionkit_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_v4_expansionkit_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_v4_expansionkit_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_expansionkit_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_v4_expansionkit_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_v4_expansionkit_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -3381,115 +3480,115 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E213_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E213_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E213_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E213_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E213_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E213_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E213_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E213_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E213_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E213_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E213_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E213_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E213_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E213_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E213_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E213_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E213_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E213_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E213_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E213_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E213_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E213_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -3503,115 +3602,115 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E290_companion_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_companion_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E290_companion_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_companion_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E290_companion_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_companion_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E290_companion_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_companion_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E290_companion_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_companion_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E290_companion_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_companion_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E290_companion_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_companion_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E290_companion_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_companion_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E290_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E290_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E290_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E290_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E290_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E290_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E290_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E290_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_E290_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_E290_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_E290_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_E290_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_E290_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_E290_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -3625,115 +3724,115 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_T190_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_T190_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_T190_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_T190_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_T190_companion_radio_usb_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_companion_radio_usb_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_T190_companion_radio_usb_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_companion_radio_usb_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_T190_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_T190_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_T190_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_T190_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_T190_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_T190_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_T190_repeater_bridge_espnow_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_repeater_bridge_espnow_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_T190_repeater_bridge_espnow_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_repeater_bridge_espnow_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_T190_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_T190_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_T190_room_server_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_room_server_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_T190_room_server_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_T190_room_server_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_T190_room_server_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_room_server_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_T190_room_server_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_T190_room_server_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -3747,23 +3846,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Tracker_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Tracker_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Tracker_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Tracker_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3771,115 +3870,115 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Tracker_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Tracker_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Tracker_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Tracker_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Tracker_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Tracker_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Tracker_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Tracker_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Tracker_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Tracker_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Tracker_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Tracker_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Tracker_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Tracker_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Tracker_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Tracker_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_Wireless_Tracker_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_Wireless_Tracker_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_Wireless_Tracker_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_Wireless_Tracker_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_Wireless_Tracker_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_Wireless_Tracker_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -3893,23 +3992,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3917,46 +4016,46 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -3964,92 +4063,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4057,23 +4156,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4081,23 +4180,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "heltec_tracker_v2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "heltec_tracker_v2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/heltec_tracker_v2_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "heltec_tracker_v2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "heltec_tracker_v2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/heltec_tracker_v2_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -4111,23 +4210,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4135,46 +4234,46 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4182,115 +4281,115 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -4298,23 +4397,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "Heltec_WSL3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Heltec_WSL3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Heltec_WSL3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "Heltec_WSL3_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Heltec_WSL3_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Heltec_WSL3_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -4328,138 +4427,138 @@ "role": "companionBle", "title": "Companion radio - 0.96 display", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionBle", "title": "Companion radio - 0.96 display rotated", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 0.96 display", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 0.96 display rotated", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_096_rotated_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - No display", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_handheld_nrf_e22_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_handheld_nrf_e22_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_handheld_nrf_e22_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_handheld_nrf_e22_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - No display", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_handheld_nrf_e22_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_handheld_nrf_e22_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_handheld_nrf_e22_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_handheld_nrf_e22_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_handheld_nrf_e22_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_handheld_nrf_e22_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -4473,276 +4572,276 @@ "role": "companionBle", "title": "Companion radio - 22dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_22dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_22dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_22dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_22dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 22dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_22dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_22dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_22dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_22dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 22dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_22dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_22dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_22dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_22dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 22dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_22dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_22dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_22dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_22dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_22dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_22dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionBle", "title": "Companion radio - 30dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_30dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_30dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_30dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_30dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 30dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_30dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_30dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_30dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_30dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 30dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 30dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionBle", "title": "Companion radio - 33dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_33dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_33dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_33dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_33dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 33dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_33dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_33dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_33dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_33dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 33dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_33dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_33dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_33dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_33dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 33dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_nano_nrf_33dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_nano_nrf_33dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_nano_nrf_33dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_nano_nrf_33dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_nano_nrf_33dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_nano_nrf_33dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -4756,276 +4855,276 @@ "role": "companionBle", "title": "Companion radio - 22dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_22dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_22dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_22dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_22dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 22dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_22dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_22dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_22dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_22dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 22dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_22dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_22dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_22dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_22dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 22dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_22dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_22dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_22dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_22dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_22dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_22dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionBle", "title": "Companion radio - 30dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_30dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_30dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_30dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_30dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 30dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_30dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_30dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_30dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_30dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 30dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 30dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_30dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_30dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionBle", "title": "Companion radio - 33dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_33dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_33dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_33dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_33dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - 33dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_33dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_33dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_33dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_33dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - 33dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_33dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_33dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_33dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_33dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - 33dBm", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ikoka_stick_nrf_33dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ikoka_stick_nrf_33dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ikoka_stick_nrf_33dbm_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ikoka_stick_nrf_33dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ikoka_stick_nrf_33dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ikoka_stick_nrf_33dbm_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -5039,92 +5138,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "KeepteenLT1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "KeepteenLT1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "KeepteenLT1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "KeepteenLT1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "KeepteenLT1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "KeepteenLT1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "KeepteenLT1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "KeepteenLT1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "KeepteenLT1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "KeepteenLT1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "KeepteenLT1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "KeepteenLT1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "KeepteenLT1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "KeepteenLT1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/KeepteenLT1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "KeepteenLT1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "KeepteenLT1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/KeepteenLT1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -5138,23 +5237,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5162,46 +5261,46 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5209,115 +5308,115 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5325,23 +5424,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TLora_V2_1_1_6_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TLora_V2_1_1_6_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TLora_V2_1_1_6_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TLora_V2_1_1_6_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TLora_V2_1_1_6_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TLora_V2_1_1_6_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -5355,23 +5454,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5379,115 +5478,115 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5495,23 +5594,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1262_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1262_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1262_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1262_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1262_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1262_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -5525,115 +5624,115 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1276_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1276_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1276_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1276_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1276_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1276_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1276_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1276_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1276_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1276_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1276_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1276_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1276_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1276_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1276_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1276_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1276_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1276_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1276_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1276_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5641,23 +5740,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_T3S3_sx1276_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_T3S3_sx1276_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T3S3_sx1276_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_T3S3_sx1276_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_T3S3_sx1276_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T3S3_sx1276_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -5671,23 +5770,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5695,92 +5794,92 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -5794,23 +5893,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1276_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1276_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1276_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1276_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5818,92 +5917,92 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1276_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1276_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1276_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1276_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1276_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1276_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1276_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1276_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1276_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1276_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1276_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1276_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tbeam_SX1276_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tbeam_SX1276_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tbeam_SX1276_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tbeam_SX1276_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tbeam_SX1276_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tbeam_SX1276_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -5918,23 +6017,23 @@ "title": "Companion BLE", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5942,23 +6041,23 @@ "title": "Companion BLE", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38, Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5966,23 +6065,23 @@ "title": "Companion USB", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -5990,23 +6089,23 @@ "title": "Companion WiFi", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38, Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -6014,23 +6113,23 @@ "title": "Repeater Bridge ESP-NOW", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -6038,23 +6137,23 @@ "title": "Repeater", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -6062,23 +6161,23 @@ "title": "Room Server", "subTitle": "1W PA pins: DIO1 1, NSS 15, BUSY 38", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TBeam_1W_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TBeam_1W_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TBeam_1W_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this only for the LilyGo T-Beam 1W high-power PA board. It is not the standard T-Beam SX1262 target: this build uses LoRa DIO1=1, NSS=15, RESET=3, BUSY=38, SCLK/MISO/MOSI=13/12/11, RXEN=21, and GPS TX/RX=5/6. The standard T-Beam SX1262 target uses DIO1=33, NSS=18, RESET=23, SCLK/MISO/MOSI=5/19/27, and GPS RX/TX=12/34.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TBeam_1W_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TBeam_1W_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TBeam_1W_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -6092,23 +6191,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "T_Beam_S3_Supreme_SX1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "T_Beam_S3_Supreme_SX1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "T_Beam_S3_Supreme_SX1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "T_Beam_S3_Supreme_SX1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -6116,23 +6215,23 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "T_Beam_S3_Supreme_SX1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "T_Beam_S3_Supreme_SX1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "T_Beam_S3_Supreme_SX1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "T_Beam_S3_Supreme_SX1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -6140,92 +6239,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "T_Beam_S3_Supreme_SX1262_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "T_Beam_S3_Supreme_SX1262_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "T_Beam_S3_Supreme_SX1262_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "T_Beam_S3_Supreme_SX1262_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "T_Beam_S3_Supreme_SX1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "T_Beam_S3_Supreme_SX1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "T_Beam_S3_Supreme_SX1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "T_Beam_S3_Supreme_SX1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "T_Beam_S3_Supreme_SX1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "T_Beam_S3_Supreme_SX1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/T_Beam_S3_Supreme_SX1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "T_Beam_S3_Supreme_SX1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "T_Beam_S3_Supreme_SX1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/T_Beam_S3_Supreme_SX1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -6239,69 +6338,69 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TDeck_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TDeck_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TDeck_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TDeck_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TDeck_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TDeck_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TDeck_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TDeck_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TDeck_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TDeck_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TDeck_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TDeck_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TDeck_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TDeck_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TDeck_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TDeck_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TDeck_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TDeck_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TDeck_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TDeck_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TDeck_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TDeck_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TDeck_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TDeck_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -6315,92 +6414,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -6414,92 +6513,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_Card_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_Card_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_Card_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_Card_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_Card_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_Card_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_Card_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_Card_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_Card_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_Card_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_Card_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_Card_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo_Card_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo_Card_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo_Card_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo_Card_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo_Card_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo_Card_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -6513,23 +6612,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo-Lite_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo-Lite_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo-Lite_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo-Lite_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -6537,23 +6636,23 @@ "title": "Companion BLE", "subTitle": "Non shell", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_non_shell_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_non_shell_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_non_shell_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_non_shell_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -6561,69 +6660,69 @@ "title": "Companion USB", "subTitle": "Non shell", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_non_shell_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo-Lite_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo-Lite_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo-Lite_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo-Lite_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T-Echo-Lite_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T-Echo-Lite_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T-Echo-Lite_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T-Echo-Lite_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T-Echo-Lite_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T-Echo-Lite_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -6637,92 +6736,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TETH_Elite_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TETH_Elite_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TETH_Elite_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TETH_Elite_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TETH_Elite_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TETH_Elite_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TETH_Elite_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TETH_Elite_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TETH_Elite_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TETH_Elite_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TETH_Elite_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TETH_Elite_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_TETH_Elite_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_TETH_Elite_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_TETH_Elite_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_TETH_Elite_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_TETH_Elite_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_TETH_Elite_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -6736,46 +6835,46 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T_Impulse_Plus_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T_Impulse_Plus_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T_Impulse_Plus_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T_Impulse_Plus_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T_Impulse_Plus_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T_Impulse_Plus_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T_Impulse_Plus_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T_Impulse_Plus_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "LilyGo_T_Impulse_Plus_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T_Impulse_Plus_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "LilyGo_T_Impulse_Plus_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_T_Impulse_Plus_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "LilyGo_T_Impulse_Plus_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T_Impulse_Plus_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "LilyGo_T_Impulse_Plus_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_T_Impulse_Plus_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -6789,69 +6888,69 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_Tlora_C6_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_Tlora_C6_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_Tlora_C6_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_Tlora_C6_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_Tlora_C6_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_Tlora_C6_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_Tlora_C6_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_Tlora_C6_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_Tlora_C6_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_Tlora_C6_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_Tlora_C6_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_Tlora_C6_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_Tlora_C6_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_Tlora_C6_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_Tlora_C6_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_Tlora_C6_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "LilyGo_Tlora_C6_room_server_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_Tlora_C6_room_server_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "LilyGo_Tlora_C6_room_server_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/LilyGo_Tlora_C6_room_server_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "LilyGo_Tlora_C6_room_server_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_Tlora_C6_room_server_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "LilyGo_Tlora_C6_room_server_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/LilyGo_Tlora_C6_room_server_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -6865,92 +6964,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "M5Stack_Unit_C6L_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "M5Stack_Unit_C6L_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "M5Stack_Unit_C6L_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "M5Stack_Unit_C6L_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "M5Stack_Unit_C6L_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "M5Stack_Unit_C6L_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "M5Stack_Unit_C6L_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "M5Stack_Unit_C6L_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "M5Stack_Unit_C6L_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "M5Stack_Unit_C6L_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "M5Stack_Unit_C6L_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "M5Stack_Unit_C6L_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "M5Stack_Unit_C6L_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "M5Stack_Unit_C6L_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/M5Stack_Unit_C6L_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "M5Stack_Unit_C6L_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "M5Stack_Unit_C6L_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/M5Stack_Unit_C6L_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -6964,230 +7063,230 @@ "role": "companionBle", "title": "Companion radio - SX1262", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionBle", "title": "Companion radio - SX1268", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1268_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1268_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1268_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1268_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - SX1262", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - SX1268", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1268_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1268_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1268_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1268_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater - SX1262", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater - SX1268", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1262", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1268", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - SX1262", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server - SX1268", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1268_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1268_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1268_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1268_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -7195,23 +7294,23 @@ "title": "Terminal Chat - SX1262", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1262_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1262_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1262_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1262_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1262_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1262_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -7219,23 +7318,23 @@ "title": "Terminal Chat - SX1268", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshadventurer_sx1268_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshadventurer_sx1268_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshadventurer_sx1268_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshadventurer_sx1268_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshadventurer_sx1268_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshadventurer_sx1268_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -7249,46 +7348,46 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshimi_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshimi_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshimi_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshimi_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshimi_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshimi_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshimi_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshimi_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Meshimi_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshimi_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Meshimi_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshimi_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Meshimi_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshimi_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Meshimi_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshimi_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -7302,46 +7401,46 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Meshtiny_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshtiny_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Meshtiny_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshtiny_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Meshtiny_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshtiny_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Meshtiny_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshtiny_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Meshtiny_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshtiny_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Meshtiny_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Meshtiny_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Meshtiny_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshtiny_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Meshtiny_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Meshtiny_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -7355,92 +7454,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Minewsemi_me25ls01_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Minewsemi_me25ls01_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Minewsemi_me25ls01_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Minewsemi_me25ls01_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Minewsemi_me25ls01_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Minewsemi_me25ls01_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Minewsemi_me25ls01_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Minewsemi_me25ls01_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Minewsemi_me25ls01_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Minewsemi_me25ls01_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Minewsemi_me25ls01_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Minewsemi_me25ls01_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Minewsemi_me25ls01_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Minewsemi_me25ls01_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Minewsemi_me25ls01_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Minewsemi_me25ls01_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -7448,23 +7547,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash", - "name": "Minewsemi_me25ls01_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Minewsemi_me25ls01_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Minewsemi_me25ls01_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash", + "name": "Minewsemi_me25ls01_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Minewsemi_me25ls01_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Minewsemi_me25ls01_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -7478,92 +7577,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "R1Neo_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "R1Neo_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "R1Neo_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "R1Neo_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "R1Neo_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "R1Neo_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "R1Neo_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "R1Neo_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "R1Neo_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "R1Neo_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "R1Neo_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "R1Neo_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "R1Neo_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "R1Neo_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "R1Neo_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "R1Neo_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -7571,23 +7670,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "R1Neo_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "R1Neo_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "R1Neo_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "R1Neo_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -7595,23 +7694,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash", - "name": "R1Neo_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "R1Neo_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/R1Neo_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash", + "name": "R1Neo_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "R1Neo_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/R1Neo_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -7625,46 +7724,46 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -7672,92 +7771,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_companion_radio_wifi_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_companion_radio_wifi_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_companion_radio_wifi_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_companion_radio_wifi_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_room_server_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_room_server_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_room_server_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_room_server_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -7765,23 +7864,193 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "nibble_screen_connect_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "nibble_screen_connect_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/nibble_screen_connect_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_screen_connect_terminal_chat_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_terminal_chat_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_screen_connect_terminal_chat_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_screen_connect_terminal_chat_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } + } + } + ] + }, + { + "maker": "generic", + "name": "nibble zero connect", + "type": "esp32", + "firmware": [ + { + "role": "companionBle", + "title": "Companion BLE", + "version": { + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } + } + }, + { + "role": "companionUsb", + "title": "Companion USB", + "version": { + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_companion_radio_usb_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } + } + }, + { + "role": "companionWifi", + "title": "Companion WiFi", + "subTitle": "Wi-Fi companion interface", + "version": { + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_companion_radio_wifi_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_companion_radio_wifi_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_companion_radio_wifi_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_companion_radio_wifi_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } + } + }, + { + "role": "repeater", + "title": "Repeater", + "version": { + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } + } + }, + { + "role": "repeater", + "title": "Repeater Bridge ESP-NOW", + "version": { + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_repeater_bridge_espnow_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } + } + }, + { + "role": "roomServer", + "title": "Room Server", + "version": { + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_room_server_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_room_server_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_room_server_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_room_server_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } + } + }, + { + "role": "terminalChat", + "title": "Terminal Chat", + "subTitle": "Serial terminal chat", + "version": { + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "nibble_zero_connect_terminal_chat_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_terminal_chat_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "nibble_zero_connect_terminal_chat_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/nibble_zero_connect_terminal_chat_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -7795,69 +8064,69 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ProMicro_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ProMicro_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ProMicro_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ProMicro_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ProMicro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ProMicro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -7865,46 +8134,46 @@ "title": "Repeater Bridge RS232", "subTitle": "Serial 1", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ProMicro_repeater_bridge_rs232_serial1-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_repeater_bridge_rs232_serial1-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_repeater_bridge_rs232_serial1-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_repeater_bridge_rs232_serial1-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ProMicro_repeater_bridge_rs232_serial1-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_repeater_bridge_rs232_serial1-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_repeater_bridge_rs232_serial1-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_repeater_bridge_rs232_serial1-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "ProMicro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "ProMicro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -7912,23 +8181,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "ProMicro_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "ProMicro_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -7936,23 +8205,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash", - "name": "ProMicro_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "ProMicro_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/ProMicro_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash", + "name": "ProMicro_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "ProMicro_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/ProMicro_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -7966,92 +8235,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "RAK_11310_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "RAK_11310_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "RAK_11310_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "RAK_11310_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "RAK_11310_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "RAK_11310_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "RAK_11310_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "RAK_11310_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "RAK_11310_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "RAK_11310_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "RAK_11310_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "RAK_11310_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "RAK_11310_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "RAK_11310_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "RAK_11310_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "RAK_11310_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -8059,23 +8328,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "download", - "name": "RAK_11310_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "RAK_11310_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_11310_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "download", + "name": "RAK_11310_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "RAK_11310_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_11310_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } } ] @@ -8089,46 +8358,46 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "RAK_3x72_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "RAK_3x72_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "RAK_3x72_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "RAK_3x72_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "RAK_3x72_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "RAK_3x72_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "RAK_3x72_repeater-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_repeater-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "RAK_3x72_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -8136,23 +8405,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "download", - "name": "RAK_3x72_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "RAK_3x72_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3x72_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "download", + "name": "RAK_3x72_sensor-v1.16.02-halo-keymind-dev-6681ef79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_sensor-v1.16.02-halo-keymind-dev-6681ef79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "RAK_3x72_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3x72_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Download" + } + ] + } } } ] @@ -8166,69 +8435,69 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -8236,23 +8505,23 @@ "title": "Repeater Bridge RS232", "subTitle": "Serial 1", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_repeater_bridge_rs232_serial1-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater_bridge_rs232_serial1-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_repeater_bridge_rs232_serial1-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater_bridge_rs232_serial1-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_repeater_bridge_rs232_serial1-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater_bridge_rs232_serial1-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_repeater_bridge_rs232_serial1-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater_bridge_rs232_serial1-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -8260,46 +8529,46 @@ "title": "Repeater Bridge RS232", "subTitle": "Serial 2", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_repeater_bridge_rs232_serial2-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater_bridge_rs232_serial2-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_repeater_bridge_rs232_serial2-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_repeater_bridge_rs232_serial2-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_repeater_bridge_rs232_serial2-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater_bridge_rs232_serial2-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_repeater_bridge_rs232_serial2-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_repeater_bridge_rs232_serial2-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -8307,23 +8576,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -8331,23 +8600,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash", - "name": "RAK_4631_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_4631_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_4631_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash", + "name": "RAK_4631_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_4631_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_4631_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -8361,46 +8630,46 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8408,115 +8677,115 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8524,23 +8793,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -8548,23 +8817,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "RAK_3112_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "RAK_3112_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3112_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "RAK_3112_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "RAK_3112_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3112_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -8578,92 +8847,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_3401_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_3401_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_3401_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_3401_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_3401_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_3401_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_3401_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_3401_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_3401_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_3401_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_3401_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_3401_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_3401_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_3401_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_3401_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_3401_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -8671,23 +8940,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "RAK_3401_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_3401_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "RAK_3401_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_3401_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -8695,23 +8964,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash", - "name": "RAK_3401_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_3401_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_3401_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash", + "name": "RAK_3401_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_3401_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_3401_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -8725,92 +8994,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_WisMesh_Tag_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_WisMesh_Tag_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_WisMesh_Tag_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_WisMesh_Tag_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_WisMesh_Tag_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_WisMesh_Tag_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_WisMesh_Tag_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_WisMesh_Tag_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_WisMesh_Tag_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_WisMesh_Tag_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_WisMesh_Tag_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_WisMesh_Tag_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "RAK_WisMesh_Tag_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_WisMesh_Tag_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "RAK_WisMesh_Tag_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_WisMesh_Tag_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { @@ -8818,23 +9087,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash", - "name": "RAK_WisMesh_Tag_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "RAK_WisMesh_Tag_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/RAK_WisMesh_Tag_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash", + "name": "RAK_WisMesh_Tag_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_sensor-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "RAK_WisMesh_Tag_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/RAK_WisMesh_Tag_sensor-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -8848,69 +9117,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "PicoW_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "PicoW_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "PicoW_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/PicoW_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "PicoW_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/PicoW_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "PicoW_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "PicoW_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "PicoW_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/PicoW_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "PicoW_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/PicoW_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "PicoW_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "PicoW_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "PicoW_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/PicoW_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "PicoW_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/PicoW_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -8918,23 +9187,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "download", - "name": "PicoW_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "PicoW_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/PicoW_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "download", + "name": "PicoW_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/PicoW_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "PicoW_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/PicoW_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } } ] @@ -8948,92 +9217,92 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "waveshare_rp2040_lora_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "waveshare_rp2040_lora_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "waveshare_rp2040_lora_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "waveshare_rp2040_lora_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "waveshare_rp2040_lora_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "waveshare_rp2040_lora_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "waveshare_rp2040_lora_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "waveshare_rp2040_lora_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "waveshare_rp2040_lora_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "waveshare_rp2040_lora_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "waveshare_rp2040_lora_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "waveshare_rp2040_lora_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "waveshare_rp2040_lora_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "waveshare_rp2040_lora_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "waveshare_rp2040_lora_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "waveshare_rp2040_lora_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -9041,23 +9310,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "download", - "name": "waveshare_rp2040_lora_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "waveshare_rp2040_lora_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/waveshare_rp2040_lora_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "download", + "name": "waveshare_rp2040_lora_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "waveshare_rp2040_lora_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/waveshare_rp2040_lora_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } } ] @@ -9071,23 +9340,23 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "SenseCapIndicator-ESPNow_comp_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/SenseCapIndicator-ESPNow_comp_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "SenseCapIndicator-ESPNow_comp_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/SenseCapIndicator-ESPNow_comp_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "SenseCapIndicator-ESPNow_comp_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/SenseCapIndicator-ESPNow_comp_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "SenseCapIndicator-ESPNow_comp_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/SenseCapIndicator-ESPNow_comp_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -9101,92 +9370,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "SenseCap_Solar_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "SenseCap_Solar_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "SenseCap_Solar_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "SenseCap_Solar_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "SenseCap_Solar_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "SenseCap_Solar_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "SenseCap_Solar_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "SenseCap_Solar_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "SenseCap_Solar_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "SenseCap_Solar_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "SenseCap_Solar_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "SenseCap_Solar_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "SenseCap_Solar_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "SenseCap_Solar_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/SenseCap_Solar_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "SenseCap_Solar_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "SenseCap_Solar_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/SenseCap_Solar_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -9200,92 +9469,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "t1000e_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "t1000e_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "t1000e_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/t1000e_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "t1000e_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/t1000e_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "t1000e_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "t1000e_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "t1000e_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/t1000e_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "t1000e_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/t1000e_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "t1000e_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "t1000e_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "t1000e_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/t1000e_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "t1000e_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/t1000e_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "t1000e_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "t1000e_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/t1000e_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "t1000e_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/t1000e_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "t1000e_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/t1000e_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -9299,23 +9568,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "WioTrackerL1Eink_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1Eink_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "WioTrackerL1Eink_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1Eink_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "WioTrackerL1Eink_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1Eink_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "WioTrackerL1Eink_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1Eink_companion_radio_ble-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -9329,92 +9598,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "WioTrackerL1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "WioTrackerL1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "WioTrackerL1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "WioTrackerL1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "WioTrackerL1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "WioTrackerL1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "WioTrackerL1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "WioTrackerL1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "WioTrackerL1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "WioTrackerL1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "WioTrackerL1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "WioTrackerL1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "WioTrackerL1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "WioTrackerL1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WioTrackerL1_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "WioTrackerL1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "WioTrackerL1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WioTrackerL1_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -9428,51 +9697,51 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "wio_wm1110_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio_wm1110_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "wio_wm1110_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio_wm1110_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "wio_wm1110_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio_wm1110_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "wio_wm1110_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio_wm1110_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "wio_wm1110_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio_wm1110_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "wio_wm1110_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio_wm1110_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -9486,115 +9755,115 @@ "role": "companionUsb", "title": "Companion radio - Wio-E5", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "wio-e5_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "wio-e5_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion radio - Wio-E5 mini", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "wio-e5-mini_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5-mini_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "wio-e5-mini_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5-mini_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - Wio-E5", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "wio-e5_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "wio-e5_repeater-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5_repeater-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater - Wio-E5 mini", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "wio-e5-mini_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5-mini_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "wio-e5-mini_repeater-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_repeater-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5-mini_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge RS232 - Wio-E5", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "wio-e5-repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5-repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-repeater_bridge_rs232-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "wio-e5-repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5-repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-repeater_bridge_rs232-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -9602,23 +9871,23 @@ "title": "Sensor - Wio-E5 mini", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "download", - "name": "wio-e5-mini_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "wio-e5-mini_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/wio-e5-mini_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "download", + "name": "wio-e5-mini_sensor-v1.16.02-halo-keymind-dev-6681ef79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_sensor-v1.16.02-halo-keymind-dev-6681ef79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "wio-e5-mini_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/wio-e5-mini_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Download" + } + ] + } } } ] @@ -9632,23 +9901,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -9656,46 +9925,46 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -9703,69 +9972,69 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C3_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C3_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -9779,46 +10048,46 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C6_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C6_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C6_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C6_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C6_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C6_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C6_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C6_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_C6_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C6_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_C6_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_C6_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_C6_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C6_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_C6_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_C6_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -9832,92 +10101,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Xiao_nrf52_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Xiao_nrf52_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Xiao_nrf52_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Xiao_nrf52_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Xiao_nrf52_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Xiao_nrf52_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Xiao_nrf52_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Xiao_nrf52_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Xiao_nrf52_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Xiao_nrf52_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Xiao_nrf52_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Xiao_nrf52_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Xiao_nrf52_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Xiao_nrf52_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_nrf52_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Xiao_nrf52_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Xiao_nrf52_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_nrf52_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -9931,69 +10200,69 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "Xiao_rp2040_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "Xiao_rp2040_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "Xiao_rp2040_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "Xiao_rp2040_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "Xiao_rp2040_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "Xiao_rp2040_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "Xiao_rp2040_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "Xiao_rp2040_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "Xiao_rp2040_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "Xiao_rp2040_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "Xiao_rp2040_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "Xiao_rp2040_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -10001,23 +10270,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "download", - "name": "Xiao_rp2040_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - }, - { - "type": "download", - "name": "Xiao_rp2040_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_rp2040_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "download", + "name": "Xiao_rp2040_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + }, + { + "type": "download", + "name": "Xiao_rp2040_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_rp2040_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } } ] @@ -10032,23 +10301,23 @@ "title": "Companion BLE", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10056,23 +10325,23 @@ "title": "Companion BLE", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4, Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10080,23 +10349,23 @@ "title": "Companion USB", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10104,23 +10373,23 @@ "title": "Repeater Bridge ESP-NOW", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10128,23 +10397,23 @@ "title": "Repeater", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10152,23 +10421,23 @@ "title": "Room Server", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10176,23 +10445,23 @@ "title": "Sensor", "subTitle": "SX1262 pins: DIO1 2, NSS 5, BUSY 4, Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nBoard selection note: Use this for a Seeed XIAO ESP32S3 with an external SX1262 wired to DIO1=2, NSS=5, RESET=3, BUSY=4, SCLK/MISO/MOSI=7/8/9, and RXEN=6. Do not use it for the XIAO S3 WIO board, which uses DIO1=39, NSS=41, RESET=42, BUSY=40, and RXEN=38.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -10206,23 +10475,23 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10230,46 +10499,46 @@ "title": "Companion BLE", "subTitle": "Power saving", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_ble_ps-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_ble_ps-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10277,23 +10546,23 @@ "title": "Companion USB", "subTitle": "Serial", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_serial-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_serial-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10301,92 +10570,92 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10394,23 +10663,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_sensor-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_sensor-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10418,23 +10687,23 @@ "title": "Terminal Chat", "subTitle": "Serial terminal chat", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", - "files": [ - { - "type": "flash-wipe", - "name": "Xiao_S3_WIO_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Xiao_S3_WIO_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Xiao_S3_WIO_terminal_chat-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Terminal Chat is a standalone serial-terminal text chat build for boards used from a terminal console. It is flashable, but it does not map to the standard Configure step.", + "files": [ + { + "type": "flash-wipe", + "name": "Xiao_S3_WIO_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Xiao_S3_WIO_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Xiao_S3_WIO_terminal_chat-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -10448,92 +10717,92 @@ "role": "repeater", "title": "Repeater - SX1262", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tenstar_C3_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tenstar_C3_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1262_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tenstar_C3_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tenstar_C3_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1262_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater - SX1268", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tenstar_C3_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tenstar_C3_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1268_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tenstar_C3_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tenstar_C3_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1268_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1262", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tenstar_C3_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tenstar_C3_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1262_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tenstar_C3_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tenstar_C3_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1262_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW - SX1268", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Tenstar_C3_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Tenstar_C3_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tenstar_C3_sx1268_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Tenstar_C3_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Tenstar_C3_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tenstar_C3_sx1268_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -10547,46 +10816,46 @@ "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "Tiny_Relay_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "Tiny_Relay_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "Tiny_Relay_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "Tiny_Relay_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "download", - "name": "Tiny_Relay_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "Tiny_Relay_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "download", + "name": "Tiny_Relay_repeater-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_repeater-v1.16.01-halo-keymind-dev-ebd7da79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "Tiny_Relay_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Download" + } + ] + } } }, { @@ -10594,23 +10863,23 @@ "title": "Sensor", "subTitle": "Sensor telemetry node", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", - "files": [ - { - "type": "download", - "name": "Tiny_Relay_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.hex", - "title": "HEX download" - }, - { - "type": "download", - "name": "Tiny_Relay_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Tiny_Relay_sensor-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Sensor builds publish board-supported sensor or telemetry data on the mesh. They are flashable custom-role builds, not standard companion or repeater firmware.", + "files": [ + { + "type": "download", + "name": "Tiny_Relay_sensor-v1.16.02-halo-keymind-dev-6681ef79.hex", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_sensor-v1.16.02-halo-keymind-dev-6681ef79.hex", + "title": "HEX download" + }, + { + "type": "download", + "name": "Tiny_Relay_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Tiny_Relay_sensor-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Download" + } + ] + } } } ] @@ -10624,92 +10893,92 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Nano_G2_Ultra_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Nano_G2_Ultra_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Nano_G2_Ultra_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Nano_G2_Ultra_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Nano_G2_Ultra_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Nano_G2_Ultra_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Nano_G2_Ultra_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Nano_G2_Ultra_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Nano_G2_Ultra_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Nano_G2_Ultra_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Nano_G2_Ultra_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_repeater-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Nano_G2_Ultra_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_repeater-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash", - "name": "Nano_G2_Ultra_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.zip", - "title": "Serial DFU package" - }, - { - "type": "download", - "name": "Nano_G2_Ultra_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Nano_G2_Ultra_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.uf2", - "title": "UF2 download" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash", + "name": "Nano_G2_Ultra_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_room_server-v1.16.01-halo-keymind-dev-ebd7da79.zip", + "title": "Serial DFU package" + }, + { + "type": "download", + "name": "Nano_G2_Ultra_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Nano_G2_Ultra_room_server-v1.16.01-halo-keymind-dev-ebd7da79.uf2", + "title": "UF2 download" + } + ] + } } } ] @@ -10723,46 +10992,46 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10770,69 +11039,69 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater Bridge ESP-NOW", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10840,23 +11109,23 @@ "title": "Repeater Bridge ESP-NOW", "subTitle": "Logging", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_logging_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_logging_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_logging_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_logging_repeater_bridge_espnow-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_logging_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_logging_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_logging_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_logging_repeater_bridge_espnow-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10864,46 +11133,46 @@ "title": "Repeater", "subTitle": "Logging", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_logging_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_logging_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_logging_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_logging_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_logging_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_logging_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_logging_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_logging_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G2_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G2_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G2_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -10917,46 +11186,46 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G3_ESP32_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G3_ESP32_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_companion_radio_ble-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G3_ESP32_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G3_ESP32_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_companion_radio_ble-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "companionUsb", "title": "Companion USB", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G3_ESP32_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G3_ESP32_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_companion_radio_usb-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G3_ESP32_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G3_ESP32_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_companion_radio_usb-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -10964,46 +11233,46 @@ "title": "Companion WiFi", "subTitle": "Wi-Fi companion interface", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G3_ESP32_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G3_ESP32_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_companion_radio_wifi-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.\n\nRole note: Companion WiFi exposes the MeshCore companion interface over Wi-Fi rather than BLE or USB. Use it for boards that should be controlled over a local Wi-Fi network. It is flashable, but the validator treats it as a custom role, so the standard Configure step may not appear.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G3_ESP32_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G3_ESP32_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_companion_radio_wifi-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G3_ESP32_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G3_ESP32_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G3_ESP32_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G3_ESP32_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { @@ -11011,46 +11280,46 @@ "title": "Repeater", "subTitle": "Logging", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G3_ESP32_logging_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_logging_repeater-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G3_ESP32_logging_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_logging_repeater-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G3_ESP32_logging_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_logging_repeater-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G3_ESP32_logging_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_logging_repeater-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "roomServer", "title": "Room Server", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "Station_G3_ESP32_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_room_server-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "Station_G3_ESP32_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/Station_G3_ESP32_room_server-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "Station_G3_ESP32_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_room_server-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "Station_G3_ESP32_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/Station_G3_ESP32_room_server-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ] @@ -11064,46 +11333,46 @@ "role": "companionBle", "title": "Companion BLE", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "WHY2025_badge_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WHY2025_badge_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "WHY2025_badge_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WHY2025_badge_companion_radio_ble_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.02-halo-keymind-dev-6681ef79": { + "notes": "Keymind Cascade MeshCore v1.16.02 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "WHY2025_badge_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WHY2025_badge_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "WHY2025_badge_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WHY2025_badge_companion_radio_ble_-v1.16.02-halo-keymind-dev-6681ef79.bin", + "title": "Update (app only)" + } + ] + } } }, { "role": "repeater", "title": "Repeater", "version": { - "v1.16.0-halo-keymind-dev-28ee5d2c": { - "notes": "Keymind Cascade MeshCore v1.16.0 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", - "files": [ - { - "type": "flash-wipe", - "name": "WHY2025_badge_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WHY2025_badge_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c-merged.bin", - "title": "Full install (bootloader + firmware)" - }, - { - "type": "flash-update", - "name": "WHY2025_badge_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.0-halo-keymind-dev-28ee5d2c/WHY2025_badge_repeater_-v1.16.0-halo-keymind-dev-28ee5d2c.bin", - "title": "Update (app only)" - } - ] - } + "v1.16.01-halo-keymind-dev-ebd7da79": { + "notes": "Keymind Cascade MeshCore v1.16.01 dev firmware with Halo/Keymind retry tuning and Cascade defaults. This is the standard build without extra logging.", + "files": [ + { + "type": "flash-wipe", + "name": "WHY2025_badge_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WHY2025_badge_repeater_-v1.16.01-halo-keymind-dev-ebd7da79-merged.bin", + "title": "Full install (bootloader + firmware)" + }, + { + "type": "flash-update", + "name": "WHY2025_badge_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "url": "https://github.com/mikecarper/MeshCore/releases/download/v1.16.01-halo-keymind-dev-ebd7da79/WHY2025_badge_repeater_-v1.16.01-halo-keymind-dev-ebd7da79.bin", + "title": "Update (app only)" + } + ] + } } } ]