Skip to content

Commit

Permalink
fix wrong variable
Browse files Browse the repository at this point in the history
  • Loading branch information
adi4086 committed Nov 26, 2024
1 parent d1f2f72 commit 483aaba
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion keyboards/nuphy/air60_v2/ansi/rf.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ uint8_t func_tab[32] = {0};
uint8_t sync_lost = 0;
uint8_t rf_disconnect_delay = 0;
uint32_t uart_rpt_timer = 0;
uint32_t dequeue_timer = 0;
uint32_t dequeue_delay = 0;

report_buffer_t byte_report_buff = {0};
report_buffer_t bit_report_buff = {0};
Expand Down
2 changes: 1 addition & 1 deletion keyboards/nuphy/air60_v2/ansi/user_kb.h
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ extern bool f_goto_deepsleep;


extern uint32_t eeprom_update_timer;
extern uint32_t dequeue_timer;
extern uint32_t dequeue_delay;
extern bool rgb_update;
extern bool user_update;
extern uint8_t rgb_required;
Expand Down
2 changes: 1 addition & 1 deletion keyboards/nuphy/air75_v2/ansi/rf.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ uint8_t func_tab[32] = {0};
uint8_t sync_lost = 0;
uint8_t rf_disconnect_delay = 0;
uint32_t uart_rpt_timer = 0;
uint32_t dequeue_timer = 0;
uint32_t dequeue_delay = 0;

report_buffer_t byte_report_buff = {0};
report_buffer_t bit_report_buff = {0};
Expand Down
2 changes: 1 addition & 1 deletion keyboards/nuphy/air75_v2/ansi/user_kb.h
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ extern bool f_goto_sleep;
extern bool f_goto_deepsleep;

extern uint32_t eeprom_update_timer;
extern uint32_t dequeue_timer;
extern uint32_t dequeue_delay;
extern bool rgb_update;
extern bool user_update;
extern bool flush_side_leds;
Expand Down
2 changes: 1 addition & 1 deletion keyboards/nuphy/air96_v2/ansi/rf.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ uint8_t func_tab[32] = {0};
uint8_t sync_lost = 0;
uint8_t rf_disconnect_delay = 0;
uint32_t uart_rpt_timer = 0;
uint32_t dequeue_timer = 0;
uint32_t dequeue_delay = 0;

report_buffer_t byte_report_buff = {0};
report_buffer_t bit_report_buff = {0};
Expand Down
2 changes: 1 addition & 1 deletion keyboards/nuphy/air96_v2/ansi/user_kb.h
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ extern bool f_goto_sleep;
extern bool f_goto_deepsleep;

extern uint32_t eeprom_update_timer;
extern uint32_t dequeue_timer;
extern uint32_t dequeue_delay;
extern bool rgb_update;
extern bool user_update;
extern uint8_t rgb_required;
Expand Down

0 comments on commit 483aaba

Please sign in to comment.