h/v could be int16_t

This commit is contained in:
Dasky 2024-10-20 15:09:04 +01:00
parent 0e7e4fffac
commit 53a2180b1a
2 changed files with 4 additions and 4 deletions

View File

@ -71,14 +71,14 @@ void clear_y(void) {
set_y(0); set_y(0);
} }
void set_h(int8_t h) { void set_h(int16_t h) {
test_report.h = h; test_report.h = h;
} }
void clear_h(void) { void clear_h(void) {
set_h(0); set_h(0);
} }
void set_v(int8_t v) { void set_v(int16_t v) {
test_report.v = v; test_report.v = v;
} }
void clear_v(void) { void clear_v(void) {

View File

@ -17,10 +17,10 @@ void clear_x(void);
void set_y(int16_t y); void set_y(int16_t y);
void clear_y(void); void clear_y(void);
void set_h(int8_t h); void set_h(int16_t h);
void clear_h(void); void clear_h(void);
void set_v(int8_t v); void set_v(int16_t v);
void clear_v(void); void clear_v(void);
void clear_movement(void); void clear_movement(void);