Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-src by
targets/cmsis/TARGET_Silicon_Labs/TARGET_EFM32/TARGET_EFM32LG_STK3600/efm32lg_usb_hc.h@525:c320967f86b9, 2015-04-28 (annotated)
- Committer:
- mbed_official
- Date:
- Tue Apr 28 11:45:12 2015 +0100
- Revision:
- 525:c320967f86b9
Synchronized with git revision 299385b8331142b9dc524da7a986536f60b14553
Full URL: https://github.com/mbedmicro/mbed/commit/299385b8331142b9dc524da7a986536f60b14553/
Add in Silicon Labs targets with asynchronous API support
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mbed_official | 525:c320967f86b9 | 1 | /**************************************************************************//** |
mbed_official | 525:c320967f86b9 | 2 | * @file efm32lg_usb_hc.h |
mbed_official | 525:c320967f86b9 | 3 | * @brief EFM32LG_USB_HC register and bit field definitions |
mbed_official | 525:c320967f86b9 | 4 | * @version 3.20.6 |
mbed_official | 525:c320967f86b9 | 5 | ****************************************************************************** |
mbed_official | 525:c320967f86b9 | 6 | * @section License |
mbed_official | 525:c320967f86b9 | 7 | * <b>(C) Copyright 2014 Silicon Laboratories, Inc. http://www.silabs.com</b> |
mbed_official | 525:c320967f86b9 | 8 | ****************************************************************************** |
mbed_official | 525:c320967f86b9 | 9 | * |
mbed_official | 525:c320967f86b9 | 10 | * Permission is granted to anyone to use this software for any purpose, |
mbed_official | 525:c320967f86b9 | 11 | * including commercial applications, and to alter it and redistribute it |
mbed_official | 525:c320967f86b9 | 12 | * freely, subject to the following restrictions: |
mbed_official | 525:c320967f86b9 | 13 | * |
mbed_official | 525:c320967f86b9 | 14 | * 1. The origin of this software must not be misrepresented; you must not |
mbed_official | 525:c320967f86b9 | 15 | * claim that you wrote the original software.@n |
mbed_official | 525:c320967f86b9 | 16 | * 2. Altered source versions must be plainly marked as such, and must not be |
mbed_official | 525:c320967f86b9 | 17 | * misrepresented as being the original software.@n |
mbed_official | 525:c320967f86b9 | 18 | * 3. This notice may not be removed or altered from any source distribution. |
mbed_official | 525:c320967f86b9 | 19 | * |
mbed_official | 525:c320967f86b9 | 20 | * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc. |
mbed_official | 525:c320967f86b9 | 21 | * has no obligation to support this Software. Silicon Laboratories, Inc. is |
mbed_official | 525:c320967f86b9 | 22 | * providing the Software "AS IS", with no express or implied warranties of any |
mbed_official | 525:c320967f86b9 | 23 | * kind, including, but not limited to, any implied warranties of |
mbed_official | 525:c320967f86b9 | 24 | * merchantability or fitness for any particular purpose or warranties against |
mbed_official | 525:c320967f86b9 | 25 | * infringement of any proprietary rights of a third party. |
mbed_official | 525:c320967f86b9 | 26 | * |
mbed_official | 525:c320967f86b9 | 27 | * Silicon Laboratories, Inc. will not be liable for any consequential, |
mbed_official | 525:c320967f86b9 | 28 | * incidental, or special damages, or any other relief, or for any claim by |
mbed_official | 525:c320967f86b9 | 29 | * any third party, arising from your use of this Software. |
mbed_official | 525:c320967f86b9 | 30 | * |
mbed_official | 525:c320967f86b9 | 31 | *****************************************************************************/ |
mbed_official | 525:c320967f86b9 | 32 | /**************************************************************************//** |
mbed_official | 525:c320967f86b9 | 33 | * @brief USB_HC EFM32LG USB HC |
mbed_official | 525:c320967f86b9 | 34 | *****************************************************************************/ |
mbed_official | 525:c320967f86b9 | 35 | typedef struct |
mbed_official | 525:c320967f86b9 | 36 | { |
mbed_official | 525:c320967f86b9 | 37 | __IO uint32_t CHAR; /**< Host Channel x Characteristics Register */ |
mbed_official | 525:c320967f86b9 | 38 | uint32_t RESERVED0[1]; /**< Reserved for future use **/ |
mbed_official | 525:c320967f86b9 | 39 | __IO uint32_t INT; /**< Host Channel x Interrupt Register */ |
mbed_official | 525:c320967f86b9 | 40 | __IO uint32_t INTMSK; /**< Host Channel x Interrupt Mask Register */ |
mbed_official | 525:c320967f86b9 | 41 | __IO uint32_t TSIZ; /**< Host Channel x Transfer Size Register */ |
mbed_official | 525:c320967f86b9 | 42 | __IO uint32_t DMAADDR; /**< Host Channel x DMA Address Register */ |
mbed_official | 525:c320967f86b9 | 43 | |
mbed_official | 525:c320967f86b9 | 44 | uint32_t RESERVED1[2]; /**< Reserved future */ |
mbed_official | 525:c320967f86b9 | 45 | } USB_HC_TypeDef; |
mbed_official | 525:c320967f86b9 | 46 |