diff options
| author | Joel Challis <git@zvecr.com> | 2020-04-01 21:06:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-01 21:06:22 +0100 |
| commit | 58a9c84d6bb22c7544231f60acace4a85d6f8dd2 (patch) | |
| tree | b66824a15543aad635de99fdb4db7768ab0c385b /quantum/quantum.c | |
| parent | c217186bea9226f87ef4b8acc926c3f21a0fea85 (diff) | |
| download | qmk_firmware-58a9c84d6bb22c7544231f60acace4a85d6f8dd2.tar.gz qmk_firmware-58a9c84d6bb22c7544231f60acace4a85d6f8dd2.zip | |
Strip out features to allow minimum firmware sizes (#8645)
Diffstat (limited to 'quantum/quantum.c')
| -rw-r--r-- | quantum/quantum.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 03b5704eb..76a48cc77 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
| @@ -284,9 +284,11 @@ bool process_record_quantum(keyrecord_t *record) { | |||
| 284 | 284 | ||
| 285 | if (record->event.pressed) { | 285 | if (record->event.pressed) { |
| 286 | switch (keycode) { | 286 | switch (keycode) { |
| 287 | #ifndef NO_RESET | ||
| 287 | case RESET: | 288 | case RESET: |
| 288 | reset_keyboard(); | 289 | reset_keyboard(); |
| 289 | return false; | 290 | return false; |
| 291 | #endif | ||
| 290 | #ifndef NO_DEBUG | 292 | #ifndef NO_DEBUG |
| 291 | case DEBUG: | 293 | case DEBUG: |
| 292 | debug_enable ^= 1; | 294 | debug_enable ^= 1; |
