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/keyboard.c | |
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/keyboard.c')
-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 806e4ef7e..3bca05aab 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/>. | |||
97 | #ifdef VIRTSER_ENABLE | 97 | #ifdef VIRTSER_ENABLE |
98 | # include "virtser.h" | 98 | # include "virtser.h" |
99 | #endif | 99 | #endif |
100 | #ifdef SLEEP_LED_ENABLE | ||
101 | # include "sleep_led.h" | ||
102 | #endif | ||
100 | 103 | ||
101 | static uint32_t last_input_modification_time = 0; | 104 | static uint32_t last_input_modification_time = 0; |
102 | uint32_t last_input_activity_time(void) { return last_input_modification_time; } | 105 | uint32_t last_input_activity_time(void) { return last_input_modification_time; } |