Crates.io | pasedid |
lib.rs | pasedid |
version | 0.2.0 |
source | src |
created_at | 2023-07-31 17:24:55.109787 |
updated_at | 2023-07-31 17:24:55.109787 |
description | Parse and assemble EDID binary data blobs. |
homepage | |
repository | https://codeberg.org/ral/pasedid.git |
max_upload_size | |
id | 931070 |
size | 164,779 |
Parse and assemble EDID binary data blobs.
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
.
Validate the EDID binary blob with the edid-decode
tool:
edid-decode -c < edid.bin