Run clang-format manually to fix recently changed files (#8552)

This commit is contained in:
Joel Challis 2020-03-25 03:39:53 +00:00 committed by GitHub
parent 5075a1d9e4
commit 6ceaae30f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 39 additions and 43 deletions

View File

@ -20,8 +20,8 @@
#ifndef COMBO_VARIABLE_LEN #ifndef COMBO_VARIABLE_LEN
__attribute__((weak)) combo_t key_combos[COMBO_COUNT] = {}; __attribute__((weak)) combo_t key_combos[COMBO_COUNT] = {};
#else #else
extern combo_t key_combos[]; extern combo_t key_combos[];
extern int COMBO_LEN; extern int COMBO_LEN;
#endif #endif
__attribute__((weak)) void process_combo_event(uint8_t combo_index, bool pressed) {} __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 #ifndef COMBO_VARIABLE_LEN
for (current_combo_index = 0; current_combo_index < COMBO_COUNT; ++current_combo_index) { 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) { for (current_combo_index = 0; current_combo_index < COMBO_LEN; ++current_combo_index) {
#endif #endif
combo_t *combo = &key_combos[current_combo_index]; combo_t *combo = &key_combos[current_combo_index];

View File

@ -111,7 +111,6 @@ const point_t k_rgb_matrix_center = RGB_MATRIX_CENTER;
# define RGB_MATRIX_STARTUP_SPD UINT8_MAX / 2 # define RGB_MATRIX_STARTUP_SPD UINT8_MAX / 2
#endif #endif
bool g_suspend_state = false; bool g_suspend_state = false;
rgb_config_t rgb_matrix_config; rgb_config_t rgb_matrix_config;

View File

@ -85,7 +85,7 @@ bool transport_master(matrix_row_t matrix[]) {
# ifdef WPM_ENABLE # ifdef WPM_ENABLE
uint8_t current_wpm = get_current_wpm(); 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) { if (i2c_writeReg(SLAVE_I2C_ADDRESS, I2C_WPM_START, (void *)&current_wpm, sizeof(current_wpm), TIMEOUT) >= 0) {
i2c_buffer->current_wpm = current_wpm; i2c_buffer->current_wpm = current_wpm;
} }
@ -269,7 +269,7 @@ void transport_slave(matrix_row_t matrix[]) {
# endif # endif
# ifdef WPM_ENABLE # ifdef WPM_ENABLE
set_current_wpm(serial_m2s_buffer.current_wpm); set_current_wpm(serial_m2s_buffer.current_wpm);
# endif # endif
} }

View File

@ -17,12 +17,12 @@
#include "wpm.h" #include "wpm.h"
//WPM Stuff // WPM Stuff
static uint8_t current_wpm = 0; static uint8_t current_wpm = 0;
static uint8_t latest_wpm = 0; static uint8_t latest_wpm = 0;
static uint16_t wpm_timer = 0; static uint16_t wpm_timer = 0;
//This smoothing is 40 keystrokes // This smoothing is 40 keystrokes
static const float wpm_smoothing = 0.0487; static const float wpm_smoothing = 0.0487;
void set_current_wpm(uint8_t new_wpm) { current_wpm = new_wpm; } 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_kb(uint16_t keycode) { return wpm_keycode_user(keycode); }
__attribute__((weak)) bool wpm_keycode_user(uint16_t 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)) { 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; keycode = keycode & 0xFF;
} else if (keycode > 0xFF) { } else if (keycode > 0xFF) {
keycode = 0; keycode = 0;
} }
if((keycode >= KC_A && keycode <= KC_0) || (keycode >= KC_TAB && keycode <= KC_SLASH)) { if ((keycode >= KC_A && keycode <= KC_0) || (keycode >= KC_TAB && keycode <= KC_SLASH)) {
return true; return true;
} }
return false; return false;
} }
void update_wpm(uint16_t keycode) { void update_wpm(uint16_t keycode) {
if(wpm_keycode(keycode)) { if (wpm_keycode(keycode)) {
if(wpm_timer > 0) { if (wpm_timer > 0) {
latest_wpm = 60000 / timer_elapsed(wpm_timer) / 5; latest_wpm = 60000 / timer_elapsed(wpm_timer) / 5;
current_wpm = (latest_wpm - current_wpm) * wpm_smoothing + current_wpm; current_wpm = (latest_wpm - current_wpm) * wpm_smoothing + current_wpm;
} }
wpm_timer = timer_read(); wpm_timer = timer_read();
} }
} }
void decay_wpm(void) { void decay_wpm(void) {
if (timer_elapsed(wpm_timer) > 1000) { if (timer_elapsed(wpm_timer) > 1000) {
current_wpm = (0 - current_wpm) * wpm_smoothing + current_wpm = (0 - current_wpm) * wpm_smoothing + current_wpm;
current_wpm; wpm_timer = timer_read();
wpm_timer = timer_read(); }
}
} }

View File

@ -23,8 +23,8 @@ bool wpm_keycode(uint16_t keycode);
bool wpm_keycode_kb(uint16_t keycode); bool wpm_keycode_kb(uint16_t keycode);
bool wpm_keycode_user(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); uint8_t get_current_wpm(void);
void update_wpm(uint16_t); void update_wpm(uint16_t);
void decay_wpm(void); void decay_wpm(void);

View File

@ -354,19 +354,19 @@ const PROGMEM char usbDescriptorConfiguration[] = {
/* USB configuration descriptor */ /* USB configuration descriptor */
9, /* sizeof(usbDescriptorConfiguration): length of descriptor in bytes */ 9, /* sizeof(usbDescriptorConfiguration): length of descriptor in bytes */
USBDESCR_CONFIG, /* descriptor type */ USBDESCR_CONFIG, /* descriptor type */
# if defined (MOUSE_ENABLE) || defined(EXTRAKEY_ENABLE) # if defined(MOUSE_ENABLE) || defined(EXTRAKEY_ENABLE)
59, // 9 + (9 + 9 + 7) + (9 + 9 + 7) 59, // 9 + (9 + 9 + 7) + (9 + 9 + 7)
#else # else
34, // 9 + (9 + 9 + 7) 34, // 9 + (9 + 9 + 7)
# endif # endif
0, 0,
// 18 + 7 * USB_CFG_HAVE_INTRIN_ENDPOINT + 7 * USB_CFG_HAVE_INTRIN_ENDPOINT3 + 9, 0, // 18 + 7 * USB_CFG_HAVE_INTRIN_ENDPOINT + 7 * USB_CFG_HAVE_INTRIN_ENDPOINT3 + 9, 0,
/* total length of data returned (including inlined descriptors) */ /* total length of data returned (including inlined descriptors) */
# if defined(MOUSE_ENABLE) || defined(EXTRAKEY_ENABLE) # if defined(MOUSE_ENABLE) || defined(EXTRAKEY_ENABLE)
2, /* number of interfaces in this configuration */ 2, /* number of interfaces in this configuration */
# else # else
1, 1,
#endif # endif
1, /* index of this configuration */ 1, /* index of this configuration */
0, /* configuration name string index */ 0, /* configuration name string index */
# if USB_CFG_IS_SELF_POWERED # if USB_CFG_IS_SELF_POWERED
@ -419,13 +419,13 @@ const PROGMEM char usbDescriptorConfiguration[] = {
0, /* PROTOCOL: none */ 0, /* PROTOCOL: none */
0, /* string index for interface */ 0, /* string index for interface */
/* HID descriptor */ /* HID descriptor */
9, /* sizeof(usbDescrHID): length of descriptor in bytes */ 9, /* sizeof(usbDescrHID): length of descriptor in bytes */
USBDESCR_HID, /* descriptor type: HID */ USBDESCR_HID, /* descriptor type: HID */
0x01, 0x01, /* BCD representation of HID version */ 0x01, 0x01, /* BCD representation of HID version */
0x00, /* target country code */ 0x00, /* target country code */
0x01, /* number of HID Report (or other HID class) Descriptor infos to follow */ 0x01, /* number of HID Report (or other HID class) Descriptor infos to follow */
0x22, /* descriptor type: report */ 0x22, /* descriptor type: report */
sizeof(mouse_extra_hid_report), 0, /* total length of report descriptor */ sizeof(mouse_extra_hid_report), 0, /* total length of report descriptor */
# if USB_CFG_HAVE_INTRIN_ENDPOINT3 /* endpoint descriptor for endpoint 3 */ # if USB_CFG_HAVE_INTRIN_ENDPOINT3 /* endpoint descriptor for endpoint 3 */
/* Endpoint descriptor */ /* Endpoint descriptor */
7, /* sizeof(usbDescrEndpoint) */ 7, /* sizeof(usbDescrEndpoint) */