mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
<>
Date:
Thu Mar 30 13:45:57 2017 +0100
Revision:
161:2cc1468da177
This updates the lib to the mbed lib v139

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 161:2cc1468da177 1 /**************************************************************************//**
<> 161:2cc1468da177 2 * @file efr32mg12p_dma_descriptor.h
<> 161:2cc1468da177 3 * @brief EFR32MG12P_DMA_DESCRIPTOR register and bit field definitions
<> 161:2cc1468da177 4 * @version 5.1.2
<> 161:2cc1468da177 5 ******************************************************************************
<> 161:2cc1468da177 6 * @section License
<> 161:2cc1468da177 7 * <b>Copyright 2017 Silicon Laboratories, Inc. http://www.silabs.com</b>
<> 161:2cc1468da177 8 ******************************************************************************
<> 161:2cc1468da177 9 *
<> 161:2cc1468da177 10 * Permission is granted to anyone to use this software for any purpose,
<> 161:2cc1468da177 11 * including commercial applications, and to alter it and redistribute it
<> 161:2cc1468da177 12 * freely, subject to the following restrictions:
<> 161:2cc1468da177 13 *
<> 161:2cc1468da177 14 * 1. The origin of this software must not be misrepresented; you must not
<> 161:2cc1468da177 15 * claim that you wrote the original software.@n
<> 161:2cc1468da177 16 * 2. Altered source versions must be plainly marked as such, and must not be
<> 161:2cc1468da177 17 * misrepresented as being the original software.@n
<> 161:2cc1468da177 18 * 3. This notice may not be removed or altered from any source distribution.
<> 161:2cc1468da177 19 *
<> 161:2cc1468da177 20 * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc.
<> 161:2cc1468da177 21 * has no obligation to support this Software. Silicon Laboratories, Inc. is
<> 161:2cc1468da177 22 * providing the Software "AS IS", with no express or implied warranties of any
<> 161:2cc1468da177 23 * kind, including, but not limited to, any implied warranties of
<> 161:2cc1468da177 24 * merchantability or fitness for any particular purpose or warranties against
<> 161:2cc1468da177 25 * infringement of any proprietary rights of a third party.
<> 161:2cc1468da177 26 *
<> 161:2cc1468da177 27 * Silicon Laboratories, Inc. will not be liable for any consequential,
<> 161:2cc1468da177 28 * incidental, or special damages, or any other relief, or for any claim by
<> 161:2cc1468da177 29 * any third party, arising from your use of this Software.
<> 161:2cc1468da177 30 *
<> 161:2cc1468da177 31 *****************************************************************************/
<> 161:2cc1468da177 32 /**************************************************************************//**
<> 161:2cc1468da177 33 * @addtogroup Parts
<> 161:2cc1468da177 34 * @{
<> 161:2cc1468da177 35 ******************************************************************************/
<> 161:2cc1468da177 36 /**************************************************************************//**
<> 161:2cc1468da177 37 * @defgroup EFR32MG12P_DMA_DESCRIPTOR
<> 161:2cc1468da177 38 * @{
<> 161:2cc1468da177 39 *****************************************************************************/
<> 161:2cc1468da177 40 typedef struct
<> 161:2cc1468da177 41 {
<> 161:2cc1468da177 42 /* Note! Use of double __IOM (volatile) qualifier to ensure that both */
<> 161:2cc1468da177 43 /* pointer and referenced memory are declared volatile. */
<> 161:2cc1468da177 44 __IOM uint32_t CTRL; /**< DMA control register */
<> 161:2cc1468da177 45 __IOM void * __IOM SRC; /**< DMA source address */
<> 161:2cc1468da177 46 __IOM void * __IOM DST; /**< DMA destination address */
<> 161:2cc1468da177 47 __IOM void * __IOM LINK; /**< DMA link address */
<> 161:2cc1468da177 48 } DMA_DESCRIPTOR_TypeDef; /**< @} */
<> 161:2cc1468da177 49
<> 161:2cc1468da177 50 /** @} End of group Parts */
<> 161:2cc1468da177 51
<> 161:2cc1468da177 52