diff --git a/EXAMPLES.md b/EXAMPLES.md index 05ddfb0..9f77e50 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -439,9 +439,6 @@ To configure that feeling, it exposes two configuration knobs: - Sensitivity: How hard you have to press to trigger a click - Intensity: How strong the feedback vibration is -Note: Both of these settings are not stored persistently, they are reset when -the touchpad resets (e.g. on system reboot). - ``` # Disable haptic feedback > framework_tool --haptic-intensity 0 diff --git a/framework_lib/src/touchpad.rs b/framework_lib/src/touchpad.rs index 2294b79..d712771 100644 --- a/framework_lib/src/touchpad.rs +++ b/framework_lib/src/touchpad.rs @@ -17,6 +17,7 @@ const HAPTIC_INTENSITY_REPORT_ID: u8 = 0x09; pub const HAPTIC_INTENSITY_LEVELS: [u8; 5] = [0, 25, 50, 75, 100]; // Button press threshold / click force (HID Digitizer page 0x0D, Usage 0xB0). +// Added in HUTRR11, included in HUT 1.4 // 2-bit field, firmware accepts 1=Low, 2=Medium, 3=High. const CLICK_FORCE_REPORT_ID: u8 = 0x08;