diff options
author | Ryan <fauxpark@gmail.com> | 2023-07-16 23:42:56 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-16 23:42:56 +1000 |
commit | da2d2f947d5c30aebea17f414fb22ad50fe5410b (patch) | |
tree | fdf2ed307ddb8f32ecb9ef7444ecfdf7ff7b4904 /tmk_core/protocol | |
parent | b9e5895184c6d36b46ba723d6d71e27249e70c20 (diff) |
quantum: remove direct `quantum.h` includes (#21507)
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r-- | tmk_core/protocol/arm_atsam/main_arm_atsam.c | 1 | ||||
-rw-r--r-- | tmk_core/protocol/arm_atsam/md_rgb_matrix.c | 1 | ||||
-rw-r--r-- | tmk_core/protocol/arm_atsam/spi_master.h | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/tmk_core/protocol/arm_atsam/main_arm_atsam.c b/tmk_core/protocol/arm_atsam/main_arm_atsam.c index 5bed9e0cf4..30817c17b6 100644 --- a/tmk_core/protocol/arm_atsam/main_arm_atsam.c +++ b/tmk_core/protocol/arm_atsam/main_arm_atsam.c @@ -21,6 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "report.h" #include "host.h" #include "host_driver.h" +#include "suspend.h" #include "keycode_config.h" #include <string.h> diff --git a/tmk_core/protocol/arm_atsam/md_rgb_matrix.c b/tmk_core/protocol/arm_atsam/md_rgb_matrix.c index 6069d1e609..0f316b256c 100644 --- a/tmk_core/protocol/arm_atsam/md_rgb_matrix.c +++ b/tmk_core/protocol/arm_atsam/md_rgb_matrix.c @@ -24,6 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. # include "led.h" # include "rgb_matrix.h" # include "eeprom.h" +# include "host.h" # include <string.h> # include <math.h> diff --git a/tmk_core/protocol/arm_atsam/spi_master.h b/tmk_core/protocol/arm_atsam/spi_master.h index 26c55128be..80678a5707 100644 --- a/tmk_core/protocol/arm_atsam/spi_master.h +++ b/tmk_core/protocol/arm_atsam/spi_master.h @@ -16,7 +16,9 @@ #pragma once +#include <stdint.h> #include <stdbool.h> +#include "gpio.h" typedef int16_t spi_status_t; |