Run check-includes on files affected by KeyboardioHID driver import

Signed-off-by: Michael Richters <gedankenexperimenter@gmail.com>
f/driver/keyboardiohid
Michael Richters 3 years ago
parent 085bae2b91
commit e7ad6e0b5c
No known key found for this signature in database
GPG Key ID: 1288FD13E4EEF0C0

@ -21,7 +21,7 @@
#include "kaleidoscope/KeyEvent.h" // for KeyEvent #include "kaleidoscope/KeyEvent.h" // for KeyEvent
#include "kaleidoscope/KeyEventTracker.h" // for KeyEventTracker #include "kaleidoscope/KeyEventTracker.h" // for KeyEventTracker
#include "kaleidoscope/Runtime.h" // for Runtime, Runtime_ #include "kaleidoscope/Runtime.h" // for Runtime, Runtime_
#include "kaleidoscope/key_defs.h" // for Key, Key_0, Key_1, Key_A, Key_F1, Key_F12, Key... #include "kaleidoscope/key_defs.h" // for Key, HID_KEYBOARD_FIRST_MODIFIER, Key_0, Key_1
#include "kaleidoscope/keyswitch_state.h" // for keyToggledOn, keyIsInjected #include "kaleidoscope/keyswitch_state.h" // for keyToggledOn, keyIsInjected
// IWYU pragma: no_include "HIDAliases.h" // IWYU pragma: no_include "HIDAliases.h"

@ -25,7 +25,7 @@
#include "kaleidoscope/KeyEvent.h" // for KeyEvent #include "kaleidoscope/KeyEvent.h" // for KeyEvent
#include "kaleidoscope/Runtime.h" // for Runtime, Runtime_ #include "kaleidoscope/Runtime.h" // for Runtime, Runtime_
#include "kaleidoscope/event_handler_result.h" // for EventHandlerResult #include "kaleidoscope/event_handler_result.h" // for EventHandlerResult
#include "kaleidoscope/key_defs.h" // for Key #include "kaleidoscope/key_defs.h" // for Key, HID_KEYBOARD_FIRST_MODIFIER
#include "kaleidoscope/plugin.h" // for Plugin #include "kaleidoscope/plugin.h" // for Plugin
// IWYU pragma: no_include "HIDAliases.h" // IWYU pragma: no_include "HIDAliases.h"

@ -27,7 +27,7 @@
#include "kaleidoscope/KeyEvent.h" // for KeyEvent #include "kaleidoscope/KeyEvent.h" // for KeyEvent
#include "kaleidoscope/KeyEventTracker.h" // for KeyEventTracker #include "kaleidoscope/KeyEventTracker.h" // for KeyEventTracker
#include "kaleidoscope/event_handler_result.h" // for EventHandlerResult #include "kaleidoscope/event_handler_result.h" // for EventHandlerResult
#include "kaleidoscope/key_defs.h" // for Key, Key_Transparent #include "kaleidoscope/key_defs.h" // for Key, Key_Transparent, HID_KEYBOARD_FIRST_...
#include "kaleidoscope/plugin.h" // for Plugin #include "kaleidoscope/plugin.h" // for Plugin
// IWYU pragma: no_include "HIDAliases.h" // IWYU pragma: no_include "HIDAliases.h"

@ -18,22 +18,18 @@
#include "kaleidoscope/device/virtual/DefaultHIDReportConsumer.h" #include "kaleidoscope/device/virtual/DefaultHIDReportConsumer.h"
// From KeyboardioHID: #include <stdint.h> // for uint8_t
#include "kaleidoscope/driver/hid/keyboardio/usb/HID-Settings.h" #include <virtual_io.h> // for logUSBEvent_key...
#include "kaleidoscope/driver/hid/keyboardio/usb/MultiReport/Keyboard.h"
// From system:
#include <stdint.h> // for uint8_t
// From Arduino core:
#include <virtual_io.h> // for logUSBEvent_keyboard
// From Kaleidoscope: #include "kaleidoscope/device/virtual/Logging.h" // for log_info, logging
#include "kaleidoscope/device/virtual/Logging.h" // for log_info, logging #include "kaleidoscope/driver/hid/keyboardio/usb/HID-Settings.h" // for HID_REPORTID_NK...
#include "kaleidoscope/driver/hid/keyboardio/usb/MultiReport/Keyboard.h" // for HID_KeyboardRep...
#undef min #undef min
#undef max #undef max
#include <sstream> // for operator<<, stringstream, basic_ostream #include <sstream> // for operator<<, str...
#include <string> // for char_traits, operator+, basic_string #include <string> // for char_traits
namespace kaleidoscope { namespace kaleidoscope {

@ -22,16 +22,16 @@
#include <EEPROM.h> // for EEPROMClass, EERef #include <EEPROM.h> // for EEPROMClass, EERef
#include <stdint.h> // for uint8_t, uint16_t #include <stdint.h> // for uint8_t, uint16_t
#include <stdlib.h> // for exit, size_t #include <stdlib.h> // for exit, size_t
#include <virtual_io.h> // for getLineOfInput, isInte... #include <virtual_io.h> // for getLineOfInput
#include <sstream> // for operator<<, string #include <sstream> // for operator<<, string
#include <string> // for operator==, char_traits #include <string> // for operator==, char_t...
#include "kaleidoscope/KeyAddr.h" // for MatrixAddr, MatrixAddr... #include "kaleidoscope/KeyAddr.h" // for MatrixAddr, Matrix...
#include "kaleidoscope/device/virtual/DefaultHIDReportConsumer.h" // for DefaultHIDReportConsumer #include "kaleidoscope/device/virtual/DefaultHIDReportConsumer.h" // for DefaultHIDReportCo...
#include "kaleidoscope/device/virtual/Logging.h" // for log_error, logging #include "kaleidoscope/device/virtual/Logging.h" // for log_error, logging
#include "kaleidoscope/driver/hid/keyboardio/usb/HIDReportObserver.h" #include "kaleidoscope/driver/hid/keyboardio/usb/HIDReportObserver.h" // for HIDReportObserver
#include "kaleidoscope/key_defs.h" // for Key_NoKey #include "kaleidoscope/key_defs.h" // for Key_NoKey
#include "kaleidoscope/keyswitch_state.h" // for IS_PRESSED, WAS_PRESSED #include "kaleidoscope/keyswitch_state.h" // for IS_PRESSED, WAS_PR...
// FIXME: This relates to virtual/cores/arduino/EEPROM.h. // FIXME: This relates to virtual/cores/arduino/EEPROM.h.
// EEPROM static data must be defined here as only // EEPROM static data must be defined here as only

@ -22,12 +22,12 @@
// library KeyboardioHID. It replaces all hardware related stuff // library KeyboardioHID. It replaces all hardware related stuff
// with stub implementations. // with stub implementations.
#include <PluggableUSB.h> // for USBSetup, EP_TYPE_INTERRUPT_IN, PluggableUSBModule #include <PluggableUSB.h> // for USBSetup, EP_TYPE_...
#include <stddef.h> // for NULL #include <stddef.h> // for NULL
#include <stdint.h> // for uint8_t #include <stdint.h> // for uint8_t
#include "kaleidoscope/driver/hid/keyboardio/usb/HID_.h" #include "kaleidoscope/driver/hid/keyboardio/usb/HIDReportObserver.h" // for HIDReportObserver
#include "kaleidoscope/driver/hid/keyboardio/usb/HIDReportObserver.h" #include "kaleidoscope/driver/hid/keyboardio/usb/HID_.h" // for HID_, HIDSubDescri...
#if defined(USBCON) #if defined(USBCON)

Loading…
Cancel
Save