fix(mouse): Fixes for logging.

* Corrected logging for two-axis input timestamps.
This commit is contained in:
Peter Johanson 2023-12-11 16:28:31 -08:00 committed by kB01
parent 4d37113f3f
commit 33fc17b4c1

View file

@ -145,10 +145,10 @@ static void tick_work_cb(struct k_work *work) {
const struct device *dev = data->dev;
const struct behavior_input_two_axis_config *cfg = dev->config;
uint32_t timestamp = k_uptime_get();
uint64_t timestamp = k_uptime_get();
LOG_INF("tick start times: %lld %lld %lld", data->state.x.start_time, data->state.y.start_time,
timestamp);
LOG_INF("x start: %llu, y start: %llu, current timestamp: %llu", data->state.x.start_time,
data->state.y.start_time, timestamp);
struct vector2d move = update_movement_2d(cfg, &data->state, timestamp);