summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/export/config/erosqnative.h5
-rw-r--r--firmware/export/config/fiiom3k.h5
-rw-r--r--firmware/export/config/shanlingq1.h5
3 files changed, 12 insertions, 3 deletions
diff --git a/firmware/export/config/erosqnative.h b/firmware/export/config/erosqnative.h
index e326f29b98..f68830e211 100644
--- a/firmware/export/config/erosqnative.h
+++ b/firmware/export/config/erosqnative.h
@@ -106,7 +106,6 @@
106/* USB support */ 106/* USB support */
107#ifndef SIMULATOR 107#ifndef SIMULATOR
108#define CONFIG_USBOTG USBOTG_DESIGNWARE 108#define CONFIG_USBOTG USBOTG_DESIGNWARE
109#define USB_DW_ARCH_SLAVE
110#define USB_DW_TURNAROUND 5 109#define USB_DW_TURNAROUND 5
111#define HAVE_USBSTACK 110#define HAVE_USBSTACK
112#define USB_VENDOR_ID 0xc502 111#define USB_VENDOR_ID 0xc502
@@ -117,6 +116,10 @@
117#define HAVE_USB_CHARGING_IN_THREAD 116#define HAVE_USB_CHARGING_IN_THREAD
118#define TARGET_USB_CHARGING_DEFAULT USB_CHARGING_FORCE 117#define TARGET_USB_CHARGING_DEFAULT USB_CHARGING_FORCE
119#define HAVE_BOOTLOADER_USB_MODE 118#define HAVE_BOOTLOADER_USB_MODE
119/* This appears to improve transfer performance (the default is 64 KiB).
120 * Going any higher doesn't help but we're still slower than the OF. */
121#define USB_READ_BUFFER_SIZE (128 * 1024)
122#define USB_WRITE_BUFFER_SIZE (128 * 1024)
120#endif 123#endif
121 124
122/* Rockbox capabilities */ 125/* Rockbox capabilities */
diff --git a/firmware/export/config/fiiom3k.h b/firmware/export/config/fiiom3k.h
index 5a2fa6c025..29395bd433 100644
--- a/firmware/export/config/fiiom3k.h
+++ b/firmware/export/config/fiiom3k.h
@@ -106,7 +106,6 @@
106/* USB support */ 106/* USB support */
107#ifndef SIMULATOR 107#ifndef SIMULATOR
108#define CONFIG_USBOTG USBOTG_DESIGNWARE 108#define CONFIG_USBOTG USBOTG_DESIGNWARE
109#define USB_DW_ARCH_SLAVE
110#define USB_DW_TURNAROUND 5 109#define USB_DW_TURNAROUND 5
111#define HAVE_USBSTACK 110#define HAVE_USBSTACK
112#define USB_VENDOR_ID 0x2972 111#define USB_VENDOR_ID 0x2972
@@ -117,6 +116,10 @@
117#define HAVE_USB_CHARGING_IN_THREAD 116#define HAVE_USB_CHARGING_IN_THREAD
118#define TARGET_USB_CHARGING_DEFAULT USB_CHARGING_FORCE 117#define TARGET_USB_CHARGING_DEFAULT USB_CHARGING_FORCE
119#define HAVE_BOOTLOADER_USB_MODE 118#define HAVE_BOOTLOADER_USB_MODE
119/* This appears to improve transfer performance (the default is 64 KiB).
120 * Going any higher doesn't help but we're still slower than the OF. */
121#define USB_READ_BUFFER_SIZE (128 * 1024)
122#define USB_WRITE_BUFFER_SIZE (128 * 1024)
120#endif 123#endif
121 124
122/* Rockbox capabilities */ 125/* Rockbox capabilities */
diff --git a/firmware/export/config/shanlingq1.h b/firmware/export/config/shanlingq1.h
index c7ad1dfa6e..1f1ee79ca7 100644
--- a/firmware/export/config/shanlingq1.h
+++ b/firmware/export/config/shanlingq1.h
@@ -96,7 +96,6 @@
96/* USB support */ 96/* USB support */
97#ifndef SIMULATOR 97#ifndef SIMULATOR
98#define CONFIG_USBOTG USBOTG_DESIGNWARE 98#define CONFIG_USBOTG USBOTG_DESIGNWARE
99#define USB_DW_ARCH_SLAVE
100#define USB_DW_TURNAROUND 5 99#define USB_DW_TURNAROUND 5
101#define HAVE_USBSTACK 100#define HAVE_USBSTACK
102#define USB_VENDOR_ID 0x0525 /* Same as the xDuuo X3, for some reason. */ 101#define USB_VENDOR_ID 0x0525 /* Same as the xDuuo X3, for some reason. */
@@ -107,6 +106,10 @@
107#define HAVE_USB_CHARGING_IN_THREAD 106#define HAVE_USB_CHARGING_IN_THREAD
108#define TARGET_USB_CHARGING_DEFAULT USB_CHARGING_FORCE 107#define TARGET_USB_CHARGING_DEFAULT USB_CHARGING_FORCE
109#define HAVE_BOOTLOADER_USB_MODE 108#define HAVE_BOOTLOADER_USB_MODE
109/* This appears to improve transfer performance (the default is 64 KiB).
110 * Going any higher doesn't help but we're still slower than the OF. */
111#define USB_READ_BUFFER_SIZE (128 * 1024)
112#define USB_WRITE_BUFFER_SIZE (128 * 1024)
110#endif 113#endif
111 114
112/* Rockbox capabilities */ 115/* Rockbox capabilities */