mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-22 03:19:24 +00:00
h/v could be int16_t
This commit is contained in:
parent
0e7e4fffac
commit
53a2180b1a
@ -71,14 +71,14 @@ void clear_y(void) {
|
||||
set_y(0);
|
||||
}
|
||||
|
||||
void set_h(int8_t h) {
|
||||
void set_h(int16_t h) {
|
||||
test_report.h = h;
|
||||
}
|
||||
void clear_h(void) {
|
||||
set_h(0);
|
||||
}
|
||||
|
||||
void set_v(int8_t v) {
|
||||
void set_v(int16_t v) {
|
||||
test_report.v = v;
|
||||
}
|
||||
void clear_v(void) {
|
||||
|
@ -17,10 +17,10 @@ void clear_x(void);
|
||||
void set_y(int16_t y);
|
||||
void clear_y(void);
|
||||
|
||||
void set_h(int8_t h);
|
||||
void set_h(int16_t h);
|
||||
void clear_h(void);
|
||||
|
||||
void set_v(int8_t v);
|
||||
void set_v(int16_t v);
|
||||
void clear_v(void);
|
||||
|
||||
void clear_movement(void);
|
||||
|
Loading…
Reference in New Issue
Block a user