pasedid

Crates.iopasedid
lib.rspasedid
version0.2.0
sourcesrc
created_at2023-07-31 17:24:55.109787
updated_at2023-07-31 17:24:55.109787
descriptionParse and assemble EDID binary data blobs.
homepage
repositoryhttps://codeberg.org/ral/pasedid.git
max_upload_size
id931070
size164,779
(ralrust)

documentation

README

Parse and Assemble EDID

Parse and assemble EDID binary data blobs.

Usage

Parse a binary EDID data blob into a yaml file:

./edidparse < edid.bin > edid.yml

Note: The edidparse tool expects the data in binary form. Files in hex form need to be converted first, for example with:

xxd -r -p edid.hex > edid.bin

Assemble an EDID data blob based on specifications read from a yaml file:

./edidassemble < edid.yml > edid.bin

Note: The edidassemble tool writes binary data to stdout which is potentially dangerous. Redirect the output into a file or pipe.

For further usage information, run the comands with --help.

Notes

Validate the EDID binary blob with the edid-decode tool:

edid-decode -c < edid.bin

Links

Commit count: 0

cargo fmt