basic support for non-avr, non-usb boards
@ -9,7 +9,9 @@ Kaleidoscope_::Kaleidoscope_(void) {
void
Kaleidoscope_::setup(void) {
#ifdef __AVR__
wdt_disable();
#endif
delay(100);
Keyboard.begin();
KeyboardHardware.setup();
@ -18,7 +18,9 @@ void setup();
#include <stdio.h>
#include <math.h>
#include <avr/wdt.h>
#include KALEIDOSCOPE_HARDWARE_H
#include "key_events.h"
@ -1,6 +1,8 @@
#pragma once
#include <Arduino.h>
#if defined(USBCON) && !defined(CORE_TEENSY)
#include "KeyboardioHID.h"
#include "key_defs.h"