1
0

Shutter display

This commit is contained in:
Aiden
2026-05-26 16:38:32 +10:00
parent 3e1d30527f
commit 11b6a2dc3b
9 changed files with 428 additions and 2 deletions

View File

@@ -0,0 +1,35 @@
{
"name": "others-isolate-008f-bit11",
"notes": [
"Recover to CONNECT OK, then write only E000[0x008F].11.",
"Use this to isolate whether bit 11 alone changes the shutter display, iris AUTO lamp, or OTHERS soft-key state."
],
"steps": [
{
"action": "power_cycle",
"off_seconds": 1.5
},
{
"action": "wait_ready",
"heartbeats": 2,
"timeout": 10.0,
"require": true
},
{
"action": "drain",
"seconds": 0.25
},
{
"action": "send",
"label": "selector_zero_connect_ok_seed",
"frame": "00 00 00 80 00 DA",
"listen": 0.20
},
{
"action": "send",
"label": "e000_008f_bit11_only",
"frame": "00 01 0F 08 00 5C",
"listen": 8.0
}
]
}

View File

@@ -0,0 +1,35 @@
{
"name": "others-isolate-008f-bit12",
"notes": [
"Recover to CONNECT OK, then write only E000[0x008F].12.",
"Use this to isolate whether bit 12 alone changes the shutter display, iris AUTO lamp, or OTHERS soft-key state."
],
"steps": [
{
"action": "power_cycle",
"off_seconds": 1.5
},
{
"action": "wait_ready",
"heartbeats": 2,
"timeout": 10.0,
"require": true
},
{
"action": "drain",
"seconds": 0.25
},
{
"action": "send",
"label": "selector_zero_connect_ok_seed",
"frame": "00 00 00 80 00 DA",
"listen": 0.20
},
{
"action": "send",
"label": "e000_008f_bit12_only",
"frame": "00 01 0F 10 00 44",
"listen": 8.0
}
]
}

View File

@@ -0,0 +1,35 @@
{
"name": "others-isolate-008f-bits11-12",
"notes": [
"Recover to CONNECT OK, then write E000[0x008F].11 and .12 together.",
"This repeats the first half of others-copy-gate-probe without the E400[0x0015] write."
],
"steps": [
{
"action": "power_cycle",
"off_seconds": 1.5
},
{
"action": "wait_ready",
"heartbeats": 2,
"timeout": 10.0,
"require": true
},
{
"action": "drain",
"seconds": 0.25
},
{
"action": "send",
"label": "selector_zero_connect_ok_seed",
"frame": "00 00 00 80 00 DA",
"listen": 0.20
},
{
"action": "send",
"label": "e000_008f_bits11_12",
"frame": "00 01 0F 18 00 4C",
"listen": 8.0
}
]
}

View File

@@ -0,0 +1,47 @@
{
"name": "others-isolate-008f-then-e400-clear",
"notes": [
"Recover to CONNECT OK, write E000[0x008F]=0x1800, then write E400[0x0015]=0x0000 in the live window.",
"This is the control case for others-copy-gate-probe: same root bits, but COPY visibility cleared instead of set."
],
"steps": [
{
"action": "power_cycle",
"off_seconds": 1.5
},
{
"action": "wait_ready",
"heartbeats": 2,
"timeout": 10.0,
"require": true
},
{
"action": "drain",
"seconds": 0.25
},
{
"action": "send",
"label": "selector_zero_connect_ok_seed",
"frame": "00 00 00 80 00 DA",
"listen": 0.15
},
{
"action": "send",
"label": "e000_008f_bits11_12",
"frame": "00 01 0F 18 00 4C",
"listen": 0.15
},
{
"action": "wait_for",
"frame": "02 00 02 00 00 5A",
"timeout": 1.5,
"require": false
},
{
"action": "send",
"label": "e400_0015_clear",
"frame": "06 00 15 00 00 49",
"listen": 8.0
}
]
}

View File

@@ -0,0 +1,41 @@
{
"name": "others-isolate-e400-0015-high",
"notes": [
"Recover to CONNECT OK, wait for the live 02 report window, then write E400[0x0015]=0x8000.",
"This tests whether the high bit of the same secondary selector behaves differently from 0x0001."
],
"steps": [
{
"action": "power_cycle",
"off_seconds": 1.5
},
{
"action": "wait_ready",
"heartbeats": 2,
"timeout": 10.0,
"require": true
},
{
"action": "drain",
"seconds": 0.25
},
{
"action": "send",
"label": "selector_zero_connect_ok_seed",
"frame": "00 00 00 80 00 DA",
"listen": 0.15
},
{
"action": "wait_for",
"frame": "02 00 02 00 00 5A",
"timeout": 1.5,
"require": false
},
{
"action": "send",
"label": "e400_0015_high_nonzero",
"frame": "06 00 15 80 00 C9",
"listen": 8.0
}
]
}

View File

@@ -0,0 +1,41 @@
{
"name": "others-isolate-e400-0015-low",
"notes": [
"Recover to CONNECT OK, wait for the live 02 report window, then write E400[0x0015]=0x0001.",
"This isolates the command-6 secondary-table write from the E000[0x008F] write."
],
"steps": [
{
"action": "power_cycle",
"off_seconds": 1.5
},
{
"action": "wait_ready",
"heartbeats": 2,
"timeout": 10.0,
"require": true
},
{
"action": "drain",
"seconds": 0.25
},
{
"action": "send",
"label": "selector_zero_connect_ok_seed",
"frame": "00 00 00 80 00 DA",
"listen": 0.15
},
{
"action": "wait_for",
"frame": "02 00 02 00 00 5A",
"timeout": 1.5,
"require": false
},
{
"action": "send",
"label": "e400_0015_low_nonzero",
"frame": "06 00 15 00 01 48",
"listen": 8.0
}
]
}