Skip to content

Commit

Permalink
Manually run formatting job (qmk#11797)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvecr committed Feb 5, 2021
1 parent 18babea commit b2d0e8a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 19 deletions.
11 changes: 2 additions & 9 deletions quantum/pointing_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

static report_mouse_t mouseReport = {};

__attribute__((weak)) bool has_mouse_report_changed(report_mouse_t new, report_mouse_t old) {
return (new.buttons != old.buttons) ||
(new.x && new.x != old.x) ||
(new.y && new.y != old.y) ||
(new.h && new.h != old.h) ||
(new.v && new.v != old.v);
}

__attribute__((weak)) bool has_mouse_report_changed(report_mouse_t new, report_mouse_t old) { return (new.buttons != old.buttons) || (new.x&& new.x != old.x) || (new.y&& new.y != old.y) || (new.h&& new.h != old.h) || (new.v&& new.v != old.v); }

__attribute__((weak)) void pointing_device_init(void) {
// initialize device, if that needs to be done.
Expand All @@ -50,7 +43,7 @@ __attribute__((weak)) void pointing_device_send(void) {
mouseReport.y = 0;
mouseReport.v = 0;
mouseReport.h = 0;
old_report = mouseReport;
old_report = mouseReport;
}

__attribute__((weak)) void pointing_device_task(void) {
Expand Down
4 changes: 1 addition & 3 deletions quantum/quantum.c
Original file line number Diff line number Diff line change
Expand Up @@ -697,9 +697,7 @@ void send_byte(uint8_t number) {
send_nibble(number & 0xF);
}

void send_nibble(uint8_t number) {
tap_code16(hex_to_keycode(number));
}
void send_nibble(uint8_t number) { tap_code16(hex_to_keycode(number)); }

__attribute__((weak)) uint16_t hex_to_keycode(uint8_t hex) {
hex = hex & 0xF;
Expand Down
12 changes: 5 additions & 7 deletions tmk_core/common/keyboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

// Only enable this if console is enabled to print to
#if defined(DEBUG_MATRIX_SCAN_RATE)
static uint32_t matrix_timer = 0;
static uint32_t matrix_scan_count = 0;
static uint32_t matrix_timer = 0;
static uint32_t matrix_scan_count = 0;
static uint32_t last_matrix_scan_count = 0;

void matrix_scan_perf_task(void) {
Expand All @@ -111,14 +111,12 @@ void matrix_scan_perf_task(void) {
dprintf("matrix scan frequency: %lu\n", matrix_scan_count);
# endif
last_matrix_scan_count = matrix_scan_count;
matrix_timer = timer_now;
matrix_scan_count = 0;
matrix_timer = timer_now;
matrix_scan_count = 0;
}
}

uint32_t get_matrix_scan_rate(void) {
return last_matrix_scan_count;
}
uint32_t get_matrix_scan_rate(void) { return last_matrix_scan_count; }
#else
# define matrix_scan_perf_task()
#endif
Expand Down

0 comments on commit b2d0e8a

Please sign in to comment.