tmk_core: remove direct quantum.h includes (#21465)

This commit is contained in:
Ryan 2023-07-07 21:24:07 +10:00 committed by GitHub
parent d83578dbe4
commit 30de598650
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 13 additions and 9 deletions

View File

@ -23,7 +23,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "host_driver.h" #include "host_driver.h"
#include "keycode_config.h" #include "keycode_config.h"
#include <string.h> #include <string.h>
#include "quantum.h"
// From protocol directory // From protocol directory
#include "arm_atsam_protocol.h" #include "arm_atsam_protocol.h"

View File

@ -23,6 +23,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
# include "arm_atsam_protocol.h" # include "arm_atsam_protocol.h"
# include "led.h" # include "led.h"
# include "rgb_matrix.h" # include "rgb_matrix.h"
# include "eeprom.h"
# include <string.h> # include <string.h>
# include <math.h> # include <math.h>

View File

@ -15,11 +15,9 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _LED_MATRIX_H_ #pragma once
#define _LED_MATRIX_H_
#include "quantum.h" #include <stdint.h>
#include "eeprom.h"
// From keyboard // From keyboard
#include "config_led.h" #include "config_led.h"
@ -200,5 +198,3 @@ void md_led_changed(void);
#else #else
extern uint8_t gcr_desired; extern uint8_t gcr_desired;
#endif // USE_MASSDROP_CONFIGURATOR #endif // USE_MASSDROP_CONFIGURATOR
#endif //_LED_MATRIX_H_

View File

@ -19,6 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
# ifdef USE_MASSDROP_CONFIGURATOR # ifdef USE_MASSDROP_CONFIGURATOR
# include "md_rgb_matrix.h" # include "md_rgb_matrix.h"
# include "util.h"
// Teal <-> Salmon // Teal <-> Salmon
led_setup_t leds_teal_salmon[] = { led_setup_t leds_teal_salmon[] = {

View File

@ -48,10 +48,10 @@
# include "sleep_led.h" # include "sleep_led.h"
#endif #endif
#include "suspend.h" #include "suspend.h"
#include "wait.h"
#include "usb_descriptor.h" #include "usb_descriptor.h"
#include "lufa.h" #include "lufa.h"
#include "quantum.h"
#include "usb_device_state.h" #include "usb_device_state.h"
#include <util/atomic.h> #include <util/atomic.h>

View File

@ -13,13 +13,17 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "quantum.h"
#include "usb_util.h" #include "usb_util.h"
#include "gpio.h"
#include "wait.h"
__attribute__((weak)) void usb_disconnect(void) {} __attribute__((weak)) void usb_disconnect(void) {}
__attribute__((weak)) bool usb_connected_state(void) { __attribute__((weak)) bool usb_connected_state(void) {
return true; return true;
} }
__attribute__((weak)) bool usb_vbus_state(void) { __attribute__((weak)) bool usb_vbus_state(void) {
#ifdef USB_VBUS_PIN #ifdef USB_VBUS_PIN
setPinInput(USB_VBUS_PIN); setPinInput(USB_VBUS_PIN);

View File

@ -13,10 +13,13 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#pragma once #pragma once
#include <stdbool.h> #include <stdbool.h>
void usb_disconnect(void); void usb_disconnect(void);
bool usb_connected_state(void); bool usb_connected_state(void);
bool usb_vbus_state(void); bool usb_vbus_state(void);