USB device stack that isn't working
Fork of USBDevice by
Diff: targets/TARGET_Silicon_Labs/inc/usbconfig.h
- Revision:
- 71:53949e6131f6
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/targets/TARGET_Silicon_Labs/inc/usbconfig.h Thu Jul 27 12:14:04 2017 +0100 @@ -0,0 +1,88 @@ +/***************************************************************************//** + * @file usbconfig.h + * @brief USB protocol stack library, application supplied configuration options. + * @version 3.20.12 + ******************************************************************************* + * @section License + * <b>(C) Copyright 2014 Silicon Labs, http://www.silabs.com</b> + ******************************************************************************* + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ******************************************************************************/ + +#ifndef __USBCONFIG_H +#define __USBCONFIG_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* Compile stack for device mode. */ +#define USB_DEVICE + +/* Maximum number of endpoint used, EP0 excluded. If you change this, you must + also change USBEndpoints_EFM32.h to match. */ +#define NUM_EP_USED 6 + +/* Power management modes. The following can be or'd toghether. See comments in + em_usbd.c under "Energy-saving modes" for more details. + + USB_PWRSAVE_MODE_ONSUSPEND Set USB peripheral in low power mode on suspend + + USB_PWRSAVE_MODE_ONVBUSOFF Set USB peripheral in low power mode when not + attached to a host. While this mode assumes that the internal voltage regulator + is used and that the VREGI pin of the chip is connected to VBUS it should + be safe to use given that VREGOSEN is always enabled. If you disable VREGOSEN + you must turn this off. + + USB_PWRSAVE_MODE_ENTEREM2 Enter EM2 when USB peripheral is in low power mode. + On Mbed this allows the sleep() and deepsleep() calls to enter EM2, but + does not automatically enter any sleep states. Entering EM1 is always allowed. + + Note for Happy Gecko, errata USB_E111: Entering EM2 when both the system clock + (HFCLK) and the USB core clock (USBCCLK) is running on USHFRCO will result in + a lock-up. +*/ +#define USB_PWRSAVE_MODE (USB_PWRSAVE_MODE_ONSUSPEND|USB_PWRSAVE_MODE_ONVBUSOFF|USB_PWRSAVE_MODE_ENTEREM2) + +/* Use dynamic memory to allocate rx/tx buffers in the HAL. Saves memory + as buffers are only allocated for used endpoints. The system malloc + must return memory that is aligned by 4. + + Note: if you disable this, using isochronous endpoints with packet + sizes that are larger than the maximum for other EP types (64) will + not work. */ +#define USB_USE_DYNAMIC_MEMORY + +/* When the USB peripheral is set in low power mode, it must be clocked by a 32kHz + clock. Both LFXO and LFRCO can be used, but only LFXO guarantee USB specification + compliance. */ +#define USB_USBC_32kHz_CLK USB_USBC_32kHz_CLK_LFXO + +/* Uncomment to get some debugging information. Default value for USER_PUTCHAR + should work for SiLabs Gecko boards. Printf requires a working retarget + implementation for write(). */ +//#define DEBUG_USB_API +//#define USB_USE_PRINTF +//#define USER_PUTCHAR ITM_SendChar +//#define DEBUG_USB_INT_HI +//#define DEBUG_USB_INT_LO + + + +#ifdef __cplusplus +} +#endif + +#endif /* __USBCONFIG_H */