summaryrefslogtreecommitdiffstats
path: root/quantum
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-02-05 13:28:01 +0000
committerQMK Bot <hello@qmk.fm>2021-02-05 13:28:01 +0000
commitb4e02f8ddfdd945ea33e2dac722c4ad21a147f5f (patch)
treebed080fcf3bf41731476795a113ef8c8dd5f8f80 /quantum
parent1816b163153b17b1ade22a905bf9509cc2f1b774 (diff)
parentb2d0e8a491f347d43b482808a744642fc975afab (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'quantum')
-rw-r--r--quantum/pointing_device.c11
-rw-r--r--quantum/quantum.c4
2 files changed, 3 insertions, 12 deletions
diff --git a/quantum/pointing_device.c b/quantum/pointing_device.c
index fbcc08e6dd..09d889f697 100644
--- a/quantum/pointing_device.c
+++ b/quantum/pointing_device.c
@@ -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.
@@ -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) {
diff --git a/quantum/quantum.c b/quantum/quantum.c
index 5e0cde8a25..8ae487bec2 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -744,9 +744,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;