-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Remove the client/server architecture
This is now longer needed thanks to the new DDC implementation that doesn't require the available interfaces enumeration via udev. /sys/class/drm/card*-{display_name}/i2c-* is the interface associated to a particular display, re-use the same code as ddc_hi to initialize a ddc display. The code now runs under 100ms for each display.
- Loading branch information
1 parent
f3c0e45
commit 93503f2
Showing
16 changed files
with
409 additions
and
2,204 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
[workspace] | ||
[package] | ||
name = "lumactld" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
members = [ | ||
"cli", | ||
"ipc", | ||
"daemon", | ||
] | ||
|
||
resolver = "2" | ||
[dependencies] | ||
clap = { version = "4.5.21", features = ["derive"] } | ||
ddc-hi = { version = "0.4.1" } | ||
eyre = "0.6.12" | ||
log = "0.4.22" | ||
smithay-client-toolkit = "0.19.2" | ||
wayland-client = "0.31.7" | ||
xdg = "2.5.2" | ||
serde_json = "1.0.133" | ||
ctrlc = "3.4.5" | ||
flexi_logger = "0.29.6" | ||
nix = "0.29.0" | ||
i2c-linux = { version = "0.1.2", features = ["i2c"] } | ||
ddc-i2c = { version = "0.2.2", features = ["with-linux"] } | ||
ddc = "0.2.2" | ||
serde = { version = "1.0.215", features = ["derive"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.