Procházet zdrojové kódy

Workaround for USB memory bandwidth at very slow CPU speeds

main
PaulStoffregen před 4 roky
rodič
revize
e5a9b19465
2 změnil soubory, kde provedl 17 přidání a 0 odebrání
  1. +8
    -0
      teensy4/usb_desc.c
  2. +9
    -0
      teensy4/usb_serial.c

+ 8
- 0
teensy4/usb_desc.c Zobrazit soubor

@@ -38,6 +38,14 @@
#include "avr_functions.h"
#include "avr/pgmspace.h"

// At very slow CPU speeds, the OCRAM just isn't fast enough for
// USB to work reliably. But the precious/limited DTCM is. So
// as an ugly workaround, undefine DMAMEM so all buffers which
// would normally be allocated in OCRAM are placed in DTCM.
#if defined(F_CPU) && F_CPU < 30000000
#undef DMAMEM
#endif

// USB Descriptors are binary data which the USB host reads to
// automatically detect a USB device's capabilities. The format
// and meaning of every field is documented in numerous USB

+ 9
- 0
teensy4/usb_serial.c Zobrazit soubor

@@ -42,6 +42,15 @@
#if defined(CDC_STATUS_INTERFACE) && defined(CDC_DATA_INTERFACE)
//#if F_CPU >= 20000000

// At very slow CPU speeds, the OCRAM just isn't fast enough for
// USB to work reliably. But the precious/limited DTCM is. So
// as an ugly workaround, undefine DMAMEM so all buffers which
// would normally be allocated in OCRAM are placed in DTCM.
#if defined(F_CPU) && F_CPU < 30000000
#undef DMAMEM
#define DMAMEM
#endif

uint32_t usb_cdc_line_coding[2];
volatile uint32_t usb_cdc_line_rtsdtr_millis;
volatile uint8_t usb_cdc_line_rtsdtr=0;

Načítá se…
Zrušit
Uložit