summary refs log tree commit diff
path: root/quantum
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-03-25 03:39:53 +0000
committerGitHub <noreply@github.com>2020-03-25 14:39:53 +1100
commit6ceaae30f519b63b4b56e0277dd459cccf2d0729 (patch)
treeef453f7a49b5570196bd9ee7e32b9e7a7b5b3c10 /quantum
parent5075a1d9e4bdc4af6563f3805f567913e36f7159 (diff)
Run clang-format manually to fix recently changed files (#8552)
Diffstat (limited to 'quantum')
-rw-r--r--quantum/process_keycode/process_combo.c6
-rw-r--r--quantum/rgb_matrix.c1
-rw-r--r--quantum/split_common/transport.c4
-rw-r--r--quantum/wpm.c39
-rw-r--r--quantum/wpm.h4
5 files changed, 25 insertions, 29 deletions
diff --git a/quantum/process_keycode/process_combo.c b/quantum/process_keycode/process_combo.c
index 25a6060639..c4e299958a 100644
--- a/quantum/process_keycode/process_combo.c
+++ b/quantum/process_keycode/process_combo.c
@@ -20,8 +20,8 @@
 #ifndef COMBO_VARIABLE_LEN
 __attribute__((weak)) combo_t key_combos[COMBO_COUNT] = {};
 #else
-extern combo_t key_combos[];
-extern int     COMBO_LEN;
+extern combo_t  key_combos[];
+extern int      COMBO_LEN;
 #endif
 
 __attribute__((weak)) void process_combo_event(uint8_t combo_index, bool pressed) {}
@@ -146,7 +146,7 @@ bool process_combo(uint16_t keycode, keyrecord_t *record) {
     }
 #ifndef COMBO_VARIABLE_LEN
     for (current_combo_index = 0; current_combo_index < COMBO_COUNT; ++current_combo_index) {
-#else 
+#else
     for (current_combo_index = 0; current_combo_index < COMBO_LEN; ++current_combo_index) {
 #endif
         combo_t *combo = &key_combos[current_combo_index];
diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c
index 1a9cf82e5f..3fae9d7378 100644
--- a/quantum/rgb_matrix.c
+++ b/quantum/rgb_matrix.c
@@ -111,7 +111,6 @@ const point_t k_rgb_matrix_center = RGB_MATRIX_CENTER;
 #    define RGB_MATRIX_STARTUP_SPD UINT8_MAX / 2
 #endif
 
-
 bool g_suspend_state = false;
 
 rgb_config_t rgb_matrix_config;
diff --git a/quantum/split_common/transport.c b/quantum/split_common/transport.c
index 3234a3ef55..467ff81a97 100644
--- a/quantum/split_common/transport.c
+++ b/quantum/split_common/transport.c
@@ -85,7 +85,7 @@ bool transport_master(matrix_row_t matrix[]) {
 
 #    ifdef WPM_ENABLE
     uint8_t current_wpm = get_current_wpm();
-    if(current_wpm != i2c_buffer->current_wpm) {
+    if (current_wpm != i2c_buffer->current_wpm) {
         if (i2c_writeReg(SLAVE_I2C_ADDRESS, I2C_WPM_START, (void *)&current_wpm, sizeof(current_wpm), TIMEOUT) >= 0) {
             i2c_buffer->current_wpm = current_wpm;
         }
@@ -269,7 +269,7 @@ void transport_slave(matrix_row_t matrix[]) {
 #    endif
 
 #    ifdef WPM_ENABLE
-     set_current_wpm(serial_m2s_buffer.current_wpm);
+    set_current_wpm(serial_m2s_buffer.current_wpm);
 #    endif
 }
 
diff --git a/quantum/wpm.c b/quantum/wpm.c
index d4c971f313..da30bd252c 100644
--- a/quantum/wpm.c
+++ b/quantum/wpm.c
@@ -17,12 +17,12 @@
 
 #include "wpm.h"
 
-//WPM Stuff
-static uint8_t current_wpm = 0;
-static uint8_t latest_wpm = 0;
-static uint16_t wpm_timer = 0;
+// WPM Stuff
+static uint8_t  current_wpm = 0;
+static uint8_t  latest_wpm  = 0;
+static uint16_t wpm_timer   = 0;
 
-//This smoothing is 40 keystrokes
+// This smoothing is 40 keystrokes
 static const float wpm_smoothing = 0.0487;
 
 void set_current_wpm(uint8_t new_wpm) { current_wpm = new_wpm; }
@@ -34,34 +34,31 @@ bool wpm_keycode(uint16_t keycode) { return wpm_keycode_kb(keycode); }
 __attribute__((weak)) bool wpm_keycode_kb(uint16_t keycode) { return wpm_keycode_user(keycode); }
 
 __attribute__((weak)) bool wpm_keycode_user(uint16_t keycode) {
-
     if ((keycode >= QK_MOD_TAP && keycode <= QK_MOD_TAP_MAX) || (keycode >= QK_LAYER_TAP && keycode <= QK_LAYER_TAP_MAX) || (keycode >= QK_MODS && keycode <= QK_MODS_MAX)) {
         keycode = keycode & 0xFF;
     } else if (keycode > 0xFF) {
-	keycode = 0;
+        keycode = 0;
     }
-    if((keycode >= KC_A && keycode <= KC_0) || (keycode >= KC_TAB && keycode <= KC_SLASH)) {
-	return true;
+    if ((keycode >= KC_A && keycode <= KC_0) || (keycode >= KC_TAB && keycode <= KC_SLASH)) {
+        return true;
     }
 
     return false;
 }
 
-
 void update_wpm(uint16_t keycode) {
-    if(wpm_keycode(keycode)) {
-	if(wpm_timer > 0) {
-	    latest_wpm = 60000 / timer_elapsed(wpm_timer) / 5;
-	    current_wpm = (latest_wpm - current_wpm) * wpm_smoothing + current_wpm;
-	}
-	wpm_timer = timer_read();
+    if (wpm_keycode(keycode)) {
+        if (wpm_timer > 0) {
+            latest_wpm  = 60000 / timer_elapsed(wpm_timer) / 5;
+            current_wpm = (latest_wpm - current_wpm) * wpm_smoothing + current_wpm;
+        }
+        wpm_timer = timer_read();
     }
 }
 
 void decay_wpm(void) {
-  if (timer_elapsed(wpm_timer) > 1000) {
-	current_wpm = (0 - current_wpm) * wpm_smoothing +
-		current_wpm;
-	wpm_timer = timer_read();
-  }
+    if (timer_elapsed(wpm_timer) > 1000) {
+        current_wpm = (0 - current_wpm) * wpm_smoothing + current_wpm;
+        wpm_timer   = timer_read();
+    }
 }
diff --git a/quantum/wpm.h b/quantum/wpm.h
index fa0b6d1288..15ab4ffcd1 100644
--- a/quantum/wpm.h
+++ b/quantum/wpm.h
@@ -23,8 +23,8 @@ bool wpm_keycode(uint16_t keycode);
 bool wpm_keycode_kb(uint16_t keycode);
 bool wpm_keycode_user(uint16_t keycode);
 
-void set_current_wpm(uint8_t);
+void    set_current_wpm(uint8_t);
 uint8_t get_current_wpm(void);
-void update_wpm(uint16_t);
+void    update_wpm(uint16_t);
 
 void decay_wpm(void);