mirror of
https://codeberg.org/ral/rwedid.git
synced 2024-08-16 09:59:49 +02:00
Mirror of read/write edid rust tooling
| src | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| LICENSE | ||
| readme.md | ||
Read and Write EDID
Read and write EDID data over an I2C bus.
Usage
Load the Linux kernel module:
modprobe i2c-dev
Adapt the I2C bus device /dev/i2c-4 in the examples below
to whatever matches your hardware setup.
Note: Be very careful to write to the correct bus! Failing to do so may seriously damage your hardware!
To read an EDID, run (as root):
./edidread -d /dev/i2c-4 > edid.bin
To write an EDID, run (as root):
./edidwrite -d /dev/i2c-4 < edid.bin
Note: The edidread tool writes binary data to stdout which
is potentially dangerous. Redirect the output into a file or pipe.