Skip to content

Commit

Permalink
wire up m101 to TinyUSB MCU driver
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Yu <[email protected]>
  • Loading branch information
tlyu committed Mar 22, 2024
1 parent ac3df23 commit 437f395
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct cRGB {
#include "kaleidoscope/driver/hid/TinyUSB.h"
#include "kaleidoscope/driver/keyscanner/Simple.h"
#include "kaleidoscope/driver/led/Base.h"
#include "kaleidoscope/driver/mcu/Base.h"
#include "kaleidoscope/driver/mcu/TinyUSB.h"
#include "kaleidoscope/driver/storage/Base.h"


Expand Down Expand Up @@ -85,8 +85,8 @@ struct Model101Props : public kaleidoscope::device::BaseProps {
typedef kaleidoscope::driver::bootloader::Base Bootloader;
static constexpr const char *short_name = "kbio101";

typedef kaleidoscope::driver::mcu::BaseProps MCUProps;
typedef kaleidoscope::driver::mcu::Base<MCUProps> MCU;
typedef kaleidoscope::driver::mcu::TinyUSBProps MCUProps;
typedef kaleidoscope::driver::mcu::TinyUSB<MCUProps> MCU;
};

class Model101 : public kaleidoscope::device::Base<Model101Props> {
Expand Down

0 comments on commit 437f395

Please sign in to comment.