#include /* * core.h * * Created: 13.04.2023 14:23:22 * Author: mrnek */ #define KEYS_AMOUNT 16 struct key { unsigned long pressed_time; bool is_physical_pressed; bool is_logical_pressed; }; void check_physical_keys_state(struct key *keys);