Skip to content

Commit

Permalink
chore: disable emulated backlight by default since it is buggy.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP committed Nov 4, 2023
1 parent f94977e commit 7d447d0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
## 5.x
## 5.9

### Als
- [x] add support for buffer als reads

### Pipewire
- [ ] Fix set_camera_setting() impl -> how to get current value? how to set a new value?
- [ ] Check pipewire 0.3.60 v4l2 changes
- [x] fix source of segfault
- [x] fix node names, ose object.path instead of object id
- [x] use same algorithm as camera sensor to retrieve default camera (ie: the one with highest USEC_INITIALIZED property)
Expand All @@ -15,6 +13,16 @@
- [x] use USEC_INITIALIZED property instead of sysnum

### Backlight
- [x] disable emulated_backlight by default since it is a little buggy

## 5.x

### Pipewire
- [ ] Fix set_camera_setting() impl -> how to get current value? how to set a new value?
- [ ] Check pipewire 0.3.60 v4l2 changes

### Backlight
- [ ] investigate emulated_backlight bugginess
- [ ] Keep it up to date with possible ddcutil api changes

## 6.0 (api break)
Expand Down
2 changes: 1 addition & 1 deletion src/modules/backlight_plugins/ddc.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ BACKLIGHT("DDC");
static struct udev_monitor *drm_mon;
static DDCA_Vcp_Feature_Code br_code = 0x10;
static bool ddc_backlight_enabled = true;
static bool emulated_backlight_enabled = true;
static bool emulated_backlight_enabled = false;
static uint64_t curr_cookie;

static bool load_env(void) {
Expand Down

0 comments on commit 7d447d0

Please sign in to comment.