Jack Doan

Results 4 comments of Jack Doan

I've got offsets for enabling/disabling the beeper too, but IDK how to wire that up to sysfs. A `SENSOR_DEVICE_ATTR_RW`?

I was thinking something like `beep_enable`, which also has precedent. For reference, here are the alarms, starting at offset 0x320 in the control packet: ``` struct d5next_alarms { bool vcc12;...

the alarms can be configured at the same offset (I think, need to test more) with these bit-positions: ``` enum d5next_alarm_config_index { ALARM_CFG_FLOW_0 = 0x0, ALARM_CFG_FLOW_1 = 0x1, ALARM_CFG_WATER_TEMP =...

Is there somewhere where I can read about the maintainers' thoughts on fan control? The way this is written, it looks like fan control is encouraged in https://www.kernel.org/doc/html/latest/hwmon/sysfs-interface.html. Another instance...