diff options
author | Joel Challis <git@zvecr.com> | 2021-10-28 23:43:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 23:43:57 +0100 |
commit | 0f9261424097863d23b6f4835dd3f374c6776ec7 (patch) | |
tree | ffd21dbf50ff2fa88edabc98d025d0171485d2b0 /quantum | |
parent | dcfffa7b67a072f7d9e37bd8c0029c53b61aeb0f (diff) | |
download | qmk_firmware-0f9261424097863d23b6f4835dd3f374c6776ec7.tar.gz qmk_firmware-0f9261424097863d23b6f4835dd3f374c6776ec7.zip |
Fix develop after recent changes (#14975)
* Fix sleep led issues
* Fix tests
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/keyboard.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c index 806e4ef7e8..3bca05aab7 100644 --- a/quantum/keyboard.c +++ b/quantum/keyboard.c @@ -97,6 +97,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #ifdef VIRTSER_ENABLE # include "virtser.h" #endif +#ifdef SLEEP_LED_ENABLE +# include "sleep_led.h" +#endif static uint32_t last_input_modification_time = 0; uint32_t last_input_activity_time(void) { return last_input_modification_time; } |