123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /**************************************************************************//**
- * @file
- * @brief efm32gg_usb_diep Register and Bit Field definitions
- * @author Energy Micro AS
- * @version 3.0.0
- ******************************************************************************
- * @section License
- * <b>(C) Copyright 2012 Energy Micro AS, http://www.energymicro.com</b>
- ******************************************************************************
- *
- * Permission is granted to anyone to use this software for any purpose,
- * including commercial applications, and to alter it and redistribute it
- * freely, subject to the following restrictions:
- *
- * 1. The origin of this software must not be misrepresented; you must not
- * claim that you wrote the original software.
- * 2. Altered source versions must be plainly marked as such, and must not be
- * misrepresented as being the original software.
- * 3. This notice may not be removed or altered from any source distribution.
- *
- * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Energy Micro AS has no
- * obligation to support this Software. Energy Micro AS is providing the
- * Software "AS IS", with no express or implied warranties of any kind,
- * including, but not limited to, any implied warranties of merchantability
- * or fitness for any particular purpose or warranties against infringement
- * of any proprietary rights of a third party.
- *
- * Energy Micro AS will not be liable for any consequential, incidental, or
- * special damages, or any other relief, or for any claim by any third party,
- * arising from your use of this Software.
- *
- *****************************************************************************/
- /**************************************************************************//**
- * @brief USB_DIEP EFM32GG USB DIEP
- *****************************************************************************/
- typedef struct
- {
- __IO uint32_t CTL; /**< Device IN Endpoint x+1 Control Register */
- uint32_t RESERVED0[1]; /**< Reserved for future use **/
- __IO uint32_t INT; /**< Device IN Endpoint x+1 Interrupt Register */
- uint32_t RESERVED1[1]; /**< Reserved for future use **/
- __IO uint32_t TSIZ; /**< Device IN Endpoint x+1 Transfer Size Register */
- __IO uint32_t DMAADDR; /**< Device IN Endpoint x+1 DMA Address Register */
- __I uint32_t TXFSTS; /**< Device IN Endpoint x+1 Transmit FIFO Status Register */
- uint32_t RESERVED2[1]; /**< Reserved future */
- } USB_DIEP_TypeDef;
|