diff options
| author | Joel Challis | 2022-04-16 20:13:05 +0200 |
|---|---|---|
| committer | GitHub | 2022-04-16 20:13:05 +0200 |
| commit | 92a61aa0cd9a28056e6979f01a72b8742702dbfe (patch) | |
| tree | a09ed136ab6355a762757cbffb5f836cb1b35b11 /quantum/quantum.h | |
| parent | ae4d518352204d1d7bdf32427b569a03f35fb494 (diff) | |
Implement XAP 'secure' core requirements (#16843)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
Diffstat (limited to 'quantum/quantum.h')
| -rw-r--r-- | quantum/quantum.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 9ce3c1f5d6..d021e7c05c 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -200,6 +200,11 @@ extern layer_state_t layer_state; # include "process_dynamic_macro.h" #endif +#ifdef SECURE_ENABLE +# include "secure.h" +# include "process_secure.h" +#endif + #ifdef DYNAMIC_KEYMAP_ENABLE # include "dynamic_keymap.h" #endif |