Skip to content

Instantly share code, notes, and snippets.

@Scott31393
Last active March 7, 2024 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Scott31393/f91e83108c4c74d0c7c05156be5a25a0 to your computer and use it in GitHub Desktop.
Save Scott31393/f91e83108c4c74d0c7c05156be5a25a0 to your computer and use it in GitHub Desktop.
win10-iot-enterprise-arm.md

Win10 iot Enterprise Arm Cheatsheet - zNXP

Set Preferred Video Output

# set LVDS Display
reg ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000" /v Display0Interface /t REG_DWORD /d 0x4 /f"

# set HDMI display
reg ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000" /v Display1Interface /t REG_DWORD /d 0x1 /f"

Set EDID - Bring up new lvds display

# set edid
reg ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000" /v Display0EDID /t REG_BINARY /d 00FFFFFFFFFFFF0030E42403000000000015010380160E780A9795965A55942821505400000001010101010101010101010101010101121B00805020163030204700D9880000001B000000000000000000000000000000000000000000FE004C4720446973706C61790A2020000000FE004C503130315758312D534C4E3200EB /f

Some tools to decode EDID:

edid-decode usage example:

edid-decode 2880x1800.bin -o hex

Drivers

# list net devices
pnputil /enum-devices /class {4d36e972-e325-11ce-bfc1-08002be10318}

# install driver using pnputil
pnputil /add-driver C:\Windows\System32\DriverStore\FileRepository\mrvlpcie8897.inf_arm64_9e9d7df29337c652\mrvlpcie8897.inf /force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment