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.
Dependents: Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more
cmsis/BUILD/mbed/TARGET_EFM32HG_STK3400/TOOLCHAIN_ARM_MICRO/efm32hg_dma_descriptor.h@189:f392fc9709a3, 2019-02-20 (annotated)
- Committer:
- AnnaBridge
- Date:
- Wed Feb 20 22:31:08 2019 +0000
- Revision:
- 189:f392fc9709a3
mbed library release version 165
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| AnnaBridge | 189:f392fc9709a3 | 1 | /**************************************************************************//** |
| AnnaBridge | 189:f392fc9709a3 | 2 | * @file efm32hg_dma_descriptor.h |
| AnnaBridge | 189:f392fc9709a3 | 3 | * @brief EFM32HG_DMA_DESCRIPTOR register and bit field definitions |
| AnnaBridge | 189:f392fc9709a3 | 4 | * @version 5.1.2 |
| AnnaBridge | 189:f392fc9709a3 | 5 | ****************************************************************************** |
| AnnaBridge | 189:f392fc9709a3 | 6 | * @section License |
| AnnaBridge | 189:f392fc9709a3 | 7 | * <b>Copyright 2017 Silicon Laboratories, Inc. http://www.silabs.com</b> |
| AnnaBridge | 189:f392fc9709a3 | 8 | ****************************************************************************** |
| AnnaBridge | 189:f392fc9709a3 | 9 | * |
| AnnaBridge | 189:f392fc9709a3 | 10 | * Permission is granted to anyone to use this software for any purpose, |
| AnnaBridge | 189:f392fc9709a3 | 11 | * including commercial applications, and to alter it and redistribute it |
| AnnaBridge | 189:f392fc9709a3 | 12 | * freely, subject to the following restrictions: |
| AnnaBridge | 189:f392fc9709a3 | 13 | * |
| AnnaBridge | 189:f392fc9709a3 | 14 | * 1. The origin of this software must not be misrepresented; you must not |
| AnnaBridge | 189:f392fc9709a3 | 15 | * claim that you wrote the original software.@n |
| AnnaBridge | 189:f392fc9709a3 | 16 | * 2. Altered source versions must be plainly marked as such, and must not be |
| AnnaBridge | 189:f392fc9709a3 | 17 | * misrepresented as being the original software.@n |
| AnnaBridge | 189:f392fc9709a3 | 18 | * 3. This notice may not be removed or altered from any source distribution. |
| AnnaBridge | 189:f392fc9709a3 | 19 | * |
| AnnaBridge | 189:f392fc9709a3 | 20 | * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc. |
| AnnaBridge | 189:f392fc9709a3 | 21 | * has no obligation to support this Software. Silicon Laboratories, Inc. is |
| AnnaBridge | 189:f392fc9709a3 | 22 | * providing the Software "AS IS", with no express or implied warranties of any |
| AnnaBridge | 189:f392fc9709a3 | 23 | * kind, including, but not limited to, any implied warranties of |
| AnnaBridge | 189:f392fc9709a3 | 24 | * merchantability or fitness for any particular purpose or warranties against |
| AnnaBridge | 189:f392fc9709a3 | 25 | * infringement of any proprietary rights of a third party. |
| AnnaBridge | 189:f392fc9709a3 | 26 | * |
| AnnaBridge | 189:f392fc9709a3 | 27 | * Silicon Laboratories, Inc. will not be liable for any consequential, |
| AnnaBridge | 189:f392fc9709a3 | 28 | * incidental, or special damages, or any other relief, or for any claim by |
| AnnaBridge | 189:f392fc9709a3 | 29 | * any third party, arising from your use of this Software. |
| AnnaBridge | 189:f392fc9709a3 | 30 | * |
| AnnaBridge | 189:f392fc9709a3 | 31 | *****************************************************************************/ |
| AnnaBridge | 189:f392fc9709a3 | 32 | /**************************************************************************//** |
| AnnaBridge | 189:f392fc9709a3 | 33 | * @addtogroup Parts |
| AnnaBridge | 189:f392fc9709a3 | 34 | * @{ |
| AnnaBridge | 189:f392fc9709a3 | 35 | ******************************************************************************/ |
| AnnaBridge | 189:f392fc9709a3 | 36 | /**************************************************************************//** |
| AnnaBridge | 189:f392fc9709a3 | 37 | * @defgroup EFM32HG_DMA_DESCRIPTOR |
| AnnaBridge | 189:f392fc9709a3 | 38 | * @{ |
| AnnaBridge | 189:f392fc9709a3 | 39 | *****************************************************************************/ |
| AnnaBridge | 189:f392fc9709a3 | 40 | typedef struct |
| AnnaBridge | 189:f392fc9709a3 | 41 | { |
| AnnaBridge | 189:f392fc9709a3 | 42 | /* Note! Use of double __IOM (volatile) qualifier to ensure that both */ |
| AnnaBridge | 189:f392fc9709a3 | 43 | /* pointer and referenced memory are declared volatile. */ |
| AnnaBridge | 189:f392fc9709a3 | 44 | __IOM void * __IOM SRCEND; /**< DMA source address end */ |
| AnnaBridge | 189:f392fc9709a3 | 45 | __IOM void * __IOM DSTEND; /**< DMA destination address end */ |
| AnnaBridge | 189:f392fc9709a3 | 46 | __IOM uint32_t CTRL; /**< DMA control register */ |
| AnnaBridge | 189:f392fc9709a3 | 47 | __IOM uint32_t USER; /**< DMA padding register, available for user */ |
| AnnaBridge | 189:f392fc9709a3 | 48 | } DMA_DESCRIPTOR_TypeDef; /** @} */ |
| AnnaBridge | 189:f392fc9709a3 | 49 | |
| AnnaBridge | 189:f392fc9709a3 | 50 | /** @} End of group Parts */ |
| AnnaBridge | 189:f392fc9709a3 | 51 | |
| AnnaBridge | 189:f392fc9709a3 | 52 |


