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-dev by
targets/TARGET_Silicon_Labs/TARGET_EFM32/TARGET_EFM32LG/device/efm32lg_timer_cc.h@161:2cc1468da177, 2017-03-30 (annotated)
- Committer:
- <>
- Date:
- Thu Mar 30 13:45:57 2017 +0100
- Revision:
- 161:2cc1468da177
- Parent:
- 150:02e0a0aed4ec
This updates the lib to the mbed lib v139
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
<> | 150:02e0a0aed4ec | 1 | /**************************************************************************//** |
<> | 150:02e0a0aed4ec | 2 | * @file efm32lg_timer_cc.h |
<> | 150:02e0a0aed4ec | 3 | * @brief EFM32LG_TIMER_CC register and bit field definitions |
<> | 161:2cc1468da177 | 4 | * @version 5.1.2 |
<> | 150:02e0a0aed4ec | 5 | ****************************************************************************** |
<> | 150:02e0a0aed4ec | 6 | * @section License |
<> | 161:2cc1468da177 | 7 | * <b>Copyright 2017 Silicon Laboratories, Inc. http://www.silabs.com</b> |
<> | 150:02e0a0aed4ec | 8 | ****************************************************************************** |
<> | 150:02e0a0aed4ec | 9 | * |
<> | 150:02e0a0aed4ec | 10 | * Permission is granted to anyone to use this software for any purpose, |
<> | 150:02e0a0aed4ec | 11 | * including commercial applications, and to alter it and redistribute it |
<> | 150:02e0a0aed4ec | 12 | * freely, subject to the following restrictions: |
<> | 150:02e0a0aed4ec | 13 | * |
<> | 150:02e0a0aed4ec | 14 | * 1. The origin of this software must not be misrepresented; you must not |
<> | 150:02e0a0aed4ec | 15 | * claim that you wrote the original software.@n |
<> | 150:02e0a0aed4ec | 16 | * 2. Altered source versions must be plainly marked as such, and must not be |
<> | 150:02e0a0aed4ec | 17 | * misrepresented as being the original software.@n |
<> | 150:02e0a0aed4ec | 18 | * 3. This notice may not be removed or altered from any source distribution. |
<> | 150:02e0a0aed4ec | 19 | * |
<> | 150:02e0a0aed4ec | 20 | * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc. |
<> | 150:02e0a0aed4ec | 21 | * has no obligation to support this Software. Silicon Laboratories, Inc. is |
<> | 150:02e0a0aed4ec | 22 | * providing the Software "AS IS", with no express or implied warranties of any |
<> | 150:02e0a0aed4ec | 23 | * kind, including, but not limited to, any implied warranties of |
<> | 150:02e0a0aed4ec | 24 | * merchantability or fitness for any particular purpose or warranties against |
<> | 150:02e0a0aed4ec | 25 | * infringement of any proprietary rights of a third party. |
<> | 150:02e0a0aed4ec | 26 | * |
<> | 150:02e0a0aed4ec | 27 | * Silicon Laboratories, Inc. will not be liable for any consequential, |
<> | 150:02e0a0aed4ec | 28 | * incidental, or special damages, or any other relief, or for any claim by |
<> | 150:02e0a0aed4ec | 29 | * any third party, arising from your use of this Software. |
<> | 150:02e0a0aed4ec | 30 | * |
<> | 150:02e0a0aed4ec | 31 | *****************************************************************************/ |
<> | 150:02e0a0aed4ec | 32 | /**************************************************************************//** |
<> | 150:02e0a0aed4ec | 33 | * @addtogroup Parts |
<> | 150:02e0a0aed4ec | 34 | * @{ |
<> | 150:02e0a0aed4ec | 35 | ******************************************************************************/ |
<> | 150:02e0a0aed4ec | 36 | /**************************************************************************//** |
<> | 150:02e0a0aed4ec | 37 | * @brief TIMER_CC EFM32LG TIMER CC |
<> | 150:02e0a0aed4ec | 38 | *****************************************************************************/ |
<> | 150:02e0a0aed4ec | 39 | typedef struct |
<> | 150:02e0a0aed4ec | 40 | { |
<> | 150:02e0a0aed4ec | 41 | __IOM uint32_t CTRL; /**< CC Channel Control Register */ |
<> | 150:02e0a0aed4ec | 42 | __IOM uint32_t CCV; /**< CC Channel Value Register */ |
<> | 150:02e0a0aed4ec | 43 | __IM uint32_t CCVP; /**< CC Channel Value Peek Register */ |
<> | 150:02e0a0aed4ec | 44 | __IOM uint32_t CCVB; /**< CC Channel Buffer Register */ |
<> | 150:02e0a0aed4ec | 45 | } TIMER_CC_TypeDef; |
<> | 150:02e0a0aed4ec | 46 | |
<> | 150:02e0a0aed4ec | 47 | /** @} End of group Parts */ |
<> | 150:02e0a0aed4ec | 48 | |
<> | 150:02e0a0aed4ec | 49 |