diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-08-20 08:18:49 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-08-20 08:18:49 +0000 |
commit | 433bf3bc52ce5460fcb35a6327cbdc8847d0ae1b (patch) | |
tree | 2b9f1dd56474efa353d4265b840541cb7f24a204 /os/hal/platforms/STM32 | |
parent | f701d09fb00038923a601ba7a8847feb216efa9b (diff) | |
download | ChibiOS-433bf3bc52ce5460fcb35a6327cbdc8847d0ae1b.tar.gz ChibiOS-433bf3bc52ce5460fcb35a6327cbdc8847d0ae1b.tar.bz2 ChibiOS-433bf3bc52ce5460fcb35a6327cbdc8847d0ae1b.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4590 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32')
-rw-r--r-- | os/hal/platforms/STM32/OTGv1/stm32_otg.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/os/hal/platforms/STM32/OTGv1/stm32_otg.h b/os/hal/platforms/STM32/OTGv1/stm32_otg.h index 6ba0746c9..bf45d4bc4 100644 --- a/os/hal/platforms/STM32/OTGv1/stm32_otg.h +++ b/os/hal/platforms/STM32/OTGv1/stm32_otg.h @@ -638,6 +638,9 @@ typedef struct { #define DCFG_NZLSOHSK (1U<<2) /**< Non-Zero-Length status
OUT handshake. */
#define DCFG_DSPD_MASK (3U<<0) /**< Device speed mask. */
+#define DCFG_DSPD_HS (0U<<0) /**< High speed (USB 2.0). */
+#define DCFG_DSPD_HS_FS (1U<<0) /**< High speed (USB 2.0) in FS
+ mode. */
#define DCFG_DSPD_FS11 (3U<<0) /**< Full speed (USB 1.1
transceiver clock is 48
MHz). */
|