Merge remote-tracking branch 'qmk/master' into merge-2024-04-15

This commit is contained in:
Ilya Zhuravlev 2024-04-15 19:43:02 -06:00
commit 17e46fcec7
8919 changed files with 113667 additions and 418236 deletions

View file

@ -42,7 +42,6 @@
#include "action_layer.h"
#include "eeconfig.h"
#include "bootloader.h"
#include "bootmagic.h"
#include "timer.h"
#include "sync_timer.h"
#include "gpio.h"
@ -59,6 +58,10 @@
#include <stdio.h>
#include <string.h>
#ifdef BOOTMAGIC_ENABLE
# include "bootmagic.h"
#endif
#ifdef DEFERRED_EXEC_ENABLE
# include "deferred_exec.h"
#endif
@ -233,6 +236,10 @@ extern layer_state_t layer_state;
# include "process_repeat_key.h"
#endif
#ifdef OS_DETECTION_ENABLE
# include "os_detection.h"
#endif
void set_single_persistent_default_layer(uint8_t default_layer);
#define IS_LAYER_ON(layer) layer_state_is(layer)