Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion teensy4/usb.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "usb_dev.h"
#define USB_DESC_LIST_DEFINE
#include "usb_desc.h"
#include "core_pins.h" // for delay()
#include "usb_serial.h"
#include "usb_seremu.h"
#include "usb_rawhid.h"
Expand All @@ -12,7 +13,6 @@
#include "usb_midi.h"
#include "usb_audio.h"
#include "usb_mtp.h"
#include "core_pins.h" // for delay()
#include "avr/pgmspace.h"
#include <string.h>
#include "debug/printf.h"
Expand Down
3 changes: 1 addition & 2 deletions teensy4/usb_seremu.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@
*/

#include "usb_dev.h"
#include "usb_seremu.h"
#include "core_pins.h" // for yield()
#include "usb_seremu.h"
#include <string.h> // for memcpy()
#include "avr/pgmspace.h" // for PROGMEM, DMAMEM, FASTRUN
#include "debug/printf.h"
#include "core_pins.h"

#if defined(SEREMU_INTERFACE) && !defined(CDC_STATUS_INTERFACE) && !defined(CDC_DATA_INTERFACE)

Expand Down