From 75fbe2ccec3afd64bb31e90e2c75f12af36b4d9d Mon Sep 17 00:00:00 2001 From: Squirrel61 Date: Tue, 4 Oct 2016 11:54:25 +0200 Subject: [PATCH] tapuino.h Changed a few external declarations to fix compiler warnings. Actually, 4 externals where changed from uint8 to uint16. --- tapuino.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tapuino.h b/tapuino.h index dd3452f..852b7ac 100644 --- a/tapuino.h +++ b/tapuino.h @@ -10,13 +10,13 @@ uint32_t get_timer_tick(); void save_eeprom_data(); extern volatile uint8_t g_invert_signal; -extern volatile uint8_t g_ticker_rate; -extern volatile uint8_t g_ticker_hold_rate; -extern volatile uint8_t g_key_repeat_next; -extern volatile uint8_t g_rec_finalize_time; +extern volatile uint16_t g_ticker_rate; +extern volatile uint16_t g_ticker_hold_rate; +extern volatile uint16_t g_key_repeat_next; +extern volatile uint16_t g_rec_finalize_time; extern volatile uint8_t g_rec_auto_finalize; extern uint8_t g_machine_type; extern uint8_t g_video_mode; extern volatile uint8_t g_is_paused; -#endif +#endif