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: mbed_blinky-bmd-200 bmd-200_accel_demo firstRig
Fork of mbed-src by
targets/cmsis/TARGET_Silicon_Labs/TARGET_EFM32/TARGET_EFM32LG_STK3600/efm32lg_calibrate.h@592:5e2eb8beba71, 2015-07-10 (annotated)
- Committer:
- dcnichols
- Date:
- Fri Jul 10 17:36:27 2015 +0000
- Revision:
- 592:5e2eb8beba71
- Parent:
- 529:c320967f86b9
updating to latest mbed-src
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mbed_official | 529:c320967f86b9 | 1 | /**************************************************************************//** |
mbed_official | 529:c320967f86b9 | 2 | * @file efm32lg_calibrate.h |
mbed_official | 529:c320967f86b9 | 3 | * @brief EFM32LG_CALIBRATE register and bit field definitions |
mbed_official | 529:c320967f86b9 | 4 | * @version 3.20.6 |
mbed_official | 529:c320967f86b9 | 5 | ****************************************************************************** |
mbed_official | 529:c320967f86b9 | 6 | * @section License |
mbed_official | 529:c320967f86b9 | 7 | * <b>(C) Copyright 2014 Silicon Laboratories, Inc. http://www.silabs.com</b> |
mbed_official | 529:c320967f86b9 | 8 | ****************************************************************************** |
mbed_official | 529:c320967f86b9 | 9 | * |
mbed_official | 529:c320967f86b9 | 10 | * Permission is granted to anyone to use this software for any purpose, |
mbed_official | 529:c320967f86b9 | 11 | * including commercial applications, and to alter it and redistribute it |
mbed_official | 529:c320967f86b9 | 12 | * freely, subject to the following restrictions: |
mbed_official | 529:c320967f86b9 | 13 | * |
mbed_official | 529:c320967f86b9 | 14 | * 1. The origin of this software must not be misrepresented; you must not |
mbed_official | 529:c320967f86b9 | 15 | * claim that you wrote the original software.@n |
mbed_official | 529:c320967f86b9 | 16 | * 2. Altered source versions must be plainly marked as such, and must not be |
mbed_official | 529:c320967f86b9 | 17 | * misrepresented as being the original software.@n |
mbed_official | 529:c320967f86b9 | 18 | * 3. This notice may not be removed or altered from any source distribution. |
mbed_official | 529:c320967f86b9 | 19 | * |
mbed_official | 529:c320967f86b9 | 20 | * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc. |
mbed_official | 529:c320967f86b9 | 21 | * has no obligation to support this Software. Silicon Laboratories, Inc. is |
mbed_official | 529:c320967f86b9 | 22 | * providing the Software "AS IS", with no express or implied warranties of any |
mbed_official | 529:c320967f86b9 | 23 | * kind, including, but not limited to, any implied warranties of |
mbed_official | 529:c320967f86b9 | 24 | * merchantability or fitness for any particular purpose or warranties against |
mbed_official | 529:c320967f86b9 | 25 | * infringement of any proprietary rights of a third party. |
mbed_official | 529:c320967f86b9 | 26 | * |
mbed_official | 529:c320967f86b9 | 27 | * Silicon Laboratories, Inc. will not be liable for any consequential, |
mbed_official | 529:c320967f86b9 | 28 | * incidental, or special damages, or any other relief, or for any claim by |
mbed_official | 529:c320967f86b9 | 29 | * any third party, arising from your use of this Software. |
mbed_official | 529:c320967f86b9 | 30 | * |
mbed_official | 529:c320967f86b9 | 31 | *****************************************************************************/ |
mbed_official | 529:c320967f86b9 | 32 | /**************************************************************************//** |
mbed_official | 529:c320967f86b9 | 33 | * @defgroup EFM32LG_CALIBRATE |
mbed_official | 529:c320967f86b9 | 34 | * @{ |
mbed_official | 529:c320967f86b9 | 35 | *****************************************************************************/ |
mbed_official | 529:c320967f86b9 | 36 | #define CALIBRATE_MAX_REGISTERS 50 /**< Max number of address/value pairs for calibration */ |
mbed_official | 529:c320967f86b9 | 37 | |
mbed_official | 529:c320967f86b9 | 38 | typedef struct |
mbed_official | 529:c320967f86b9 | 39 | { |
mbed_official | 529:c320967f86b9 | 40 | __I uint32_t ADDRESS; /**< Address of calibration register */ |
mbed_official | 529:c320967f86b9 | 41 | __I uint32_t VALUE; /**< Default value for calibration register */ |
mbed_official | 529:c320967f86b9 | 42 | } CALIBRATE_TypeDef; /** @} */ |
mbed_official | 529:c320967f86b9 | 43 |