summaryrefslogtreecommitdiffhomepage
path: root/src/srp/fw-ec/fn-lock-2.diff.html
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-07-30 16:08:45 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-07-30 16:08:45 +0200
commit4d6857993ea9f39ff4113809fd7b2272ff83647f (patch)
tree2f43e0ab4f358643abcfd91757c4a08c7bd06736 /src/srp/fw-ec/fn-lock-2.diff.html
parent76b9350e890f78ce4b5d7544c8a5d2dac1819153 (diff)
Finish the Framework EC page
Diffstat (limited to 'src/srp/fw-ec/fn-lock-2.diff.html')
-rw-r--r--src/srp/fw-ec/fn-lock-2.diff.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/srp/fw-ec/fn-lock-2.diff.html b/src/srp/fw-ec/fn-lock-2.diff.html
new file mode 100644
index 0000000..b3880e0
--- /dev/null
+++ b/src/srp/fw-ec/fn-lock-2.diff.html
@@ -0,0 +1,36 @@
+<code><span class="diff-meta">diff --git a/board/hx20/keyboard_customization.c b/board/hx20/keyboard_customization.c</span></code>
+<code><span class="diff-meta">index 2b91f2e0c..9a5050a0f 100644</span></code>
+<code><span class="diff-meta">--- a/board/hx20/keyboard_customization.c</span></code>
+<code><span class="diff-meta">+++ b/board/hx20/keyboard_customization.c</span></code>
+<code><span class="diff-loc">@@ -249,6 +249,23 @@ int fn_table_set(int8_t pressed, uint32_t fn_bit)</span></code>
+<code> return false;</code>
+<code> }</code>
+<code></code>
+<code><span class="diff-ins">+static void hx20_update_fnkey_led(void) {</span></code>
+<code><span class="diff-ins">+ /* Turn the capslock light into a fn-lock light */</span></code>
+<code><span class="diff-ins">+ gpio_set_level(GPIO_CAP_LED_L, (Fn_key & FN_LOCKED) ? 1 : 0);</span></code>
+<code><span class="diff-ins">+}</span></code>
+<code><span class="diff-ins">+</span></code>
+<code><span class="diff-ins">+/* Set the fn-lock light to the correct setting when the system resumes */</span></code>
+<code><span class="diff-ins">+void hx20_fnkey_resume(void) {</span></code>
+<code><span class="diff-ins">+ hx20_update_fnkey_led();</span></code>
+<code><span class="diff-ins">+}</span></code>
+<code><span class="diff-ins">+DECLARE_HOOK(HOOK_CHIPSET_RESUME, hx20_fnkey_resume, HOOK_PRIO_DEFAULT);</span></code>
+<code><span class="diff-ins">+</span></code>
+<code><span class="diff-ins">+/* Disable the fn-lock light on suspend */</span></code>
+<code><span class="diff-ins">+void hx20_fnkey_suspend(void) {</span></code>
+<code><span class="diff-ins">+ gpio_set_level(GPIO_CAP_LED_L, 0);</span></code>
+<code><span class="diff-ins">+}</span></code>
+<code><span class="diff-ins">+DECLARE_HOOK(HOOK_CHIPSET_SUSPEND, hx20_fnkey_suspend, HOOK_PRIO_DEFAULT);</span></code>
+<code><span class="diff-ins">+</span></code>
+<code> void fnkey_shutdown(void) {</code>
+<code> uint8_t current_kb = 0;</code>
+<code></code>
+<code><span class="diff-loc">@@ -420,6 +437,7 @@ int functional_hotkey(uint16_t *key_code, int8_t pressed)</span></code>
+<code> Fn_key &= ~FN_LOCKED;</code>
+<code> else</code>
+<code> Fn_key |= FN_LOCKED;</code>
+<code><span class="diff-ins">+ hx20_update_fnkey_led();</span></code>
+<code> }</code>
+<code> return EC_ERROR_UNIMPLEMENTED;</code>
+<code> }</code>