kevinlekiller

Results 123 comments of kevinlekiller

I'm having an issue where the up / down axis of the ball is reversed when building a firmware using this PR. The left / right axis is fine. The...

Setting `mouse_report.y` to `-mouse_report.y` in `pointing_device_task_kb()` fixes the inverted trackball y axis, although I've not tested if it interferes with the drag scroll conditional block since I'm not using that.

Works here (Arch, Firefox 69), this is what I did: `mkdir -p ~/.mozilla/native-messaging-hosts` `wget -O ~/.mozilla/native-messaging-hosts/mpris_integration_native.json https://github.com/jsmnbom/mpris-integration/raw/master/mpris_integration_native.json` `wget -O ~/.mozilla/mpris-integration-native https://github.com/jsmnbom/mpris-integration/releases/download/v0.2/mpris-integration-native` `chmod u+x ~/.mozilla/mpris-integration-native` `sed -i "s#PATH_TO_NATIVE_BINARY#$(realpath ~/.mozilla/mpris-integration-native)#" ~/.mozilla/native-messaging-hosts/mpris_integration_native.json` Alternatively...

Thanks fixed.

See here: https://github.com/jsmnbom/mpris-integration/issues/5#issuecomment-535283534

Noticing this as well, figured it was because of the small pieces of filament wire I couldn't get rid of inside the encoder, but your theory makes more sense.

From what I can understand, AMD has not provided any information to open source developers on how to change the boost states on zen (all I could see is the...

Searching for "boost" in https://developer.amd.com/wp-content/resources/56255_3_03.PDF On page 124 "CpbDis: core performance boost disable. Read-write. Reset: 0. 0=CPB is requested to be enabled. 1=CPB is disabled. Specifies whether core performance boost...

Great! Maybe this can be added to added to amdct, just haven't had time to do anything with it lately.

> Don't know is it a program limitation, but I can't set CPUFid more than 127 The program limits the fid up to 192: https://github.com/kevinlekiller/amdctl/blob/master/amdctl.c#L304 > but changing CpuVid has...