The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
Kojto
Date:
Wed Apr 29 10:16:23 2015 +0100
Revision:
98:8ab26030e058
Child:
113:f141b2784e32
Release 98 of the mbed library

Changes:
- Silabs new targets (Giant, Zero, Happy, Leopard, Wonder Geckos)
- Asynchronous SPI, I2C, Serial
- LowPower classes
- Nordic - nordic SDK v8.0 update
- Teensy - gcc arm fix for startup
- Nucleo F411 - usb freq fix

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 98:8ab26030e058 1 /***************************************************************************//**
Kojto 98:8ab26030e058 2 * @file em_version.h
Kojto 98:8ab26030e058 3 * @brief Assign correct part number for include file
Kojto 98:8ab26030e058 4 * @version 3.20.12
Kojto 98:8ab26030e058 5 *******************************************************************************
Kojto 98:8ab26030e058 6 * @section License
Kojto 98:8ab26030e058 7 * <b>(C) Copyright 2014 Silicon Labs, http://www.silabs.com</b>
Kojto 98:8ab26030e058 8 *******************************************************************************
Kojto 98:8ab26030e058 9 *
Kojto 98:8ab26030e058 10 * Permission is granted to anyone to use this software for any purpose,
Kojto 98:8ab26030e058 11 * including commercial applications, and to alter it and redistribute it
Kojto 98:8ab26030e058 12 * freely, subject to the following restrictions:
Kojto 98:8ab26030e058 13 *
Kojto 98:8ab26030e058 14 * 1. The origin of this software must not be misrepresented; you must not
Kojto 98:8ab26030e058 15 * claim that you wrote the original software.
Kojto 98:8ab26030e058 16 * 2. Altered source versions must be plainly marked as such, and must not be
Kojto 98:8ab26030e058 17 * misrepresented as being the original software.
Kojto 98:8ab26030e058 18 * 3. This notice may not be removed or altered from any source distribution.
Kojto 98:8ab26030e058 19 *
Kojto 98:8ab26030e058 20 * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Labs has no
Kojto 98:8ab26030e058 21 * obligation to support this Software. Silicon Labs is providing the
Kojto 98:8ab26030e058 22 * Software "AS IS", with no express or implied warranties of any kind,
Kojto 98:8ab26030e058 23 * including, but not limited to, any implied warranties of merchantability
Kojto 98:8ab26030e058 24 * or fitness for any particular purpose or warranties against infringement
Kojto 98:8ab26030e058 25 * of any proprietary rights of a third party.
Kojto 98:8ab26030e058 26 *
Kojto 98:8ab26030e058 27 * Silicon Labs will not be liable for any consequential, incidental, or
Kojto 98:8ab26030e058 28 * special damages, or any other relief, or for any claim by any third party,
Kojto 98:8ab26030e058 29 * arising from your use of this Software.
Kojto 98:8ab26030e058 30 *
Kojto 98:8ab26030e058 31 ******************************************************************************/
Kojto 98:8ab26030e058 32
Kojto 98:8ab26030e058 33
Kojto 98:8ab26030e058 34 #ifndef __SILICON_LABS_EM_VERSION_H_
Kojto 98:8ab26030e058 35 #define __SILICON_LABS_EM_VERSION_H_
Kojto 98:8ab26030e058 36
Kojto 98:8ab26030e058 37 #include "em_device.h"
Kojto 98:8ab26030e058 38
Kojto 98:8ab26030e058 39 #ifdef __cplusplus
Kojto 98:8ab26030e058 40 extern "C" {
Kojto 98:8ab26030e058 41 #endif
Kojto 98:8ab26030e058 42
Kojto 98:8ab26030e058 43 /***************************************************************************//**
Kojto 98:8ab26030e058 44 * @addtogroup EM_Library
Kojto 98:8ab26030e058 45 * @{
Kojto 98:8ab26030e058 46 ******************************************************************************/
Kojto 98:8ab26030e058 47
Kojto 98:8ab26030e058 48 /***************************************************************************//**
Kojto 98:8ab26030e058 49 * @addtogroup Version
Kojto 98:8ab26030e058 50 * @{
Kojto 98:8ab26030e058 51 ******************************************************************************/
Kojto 98:8ab26030e058 52
Kojto 98:8ab26030e058 53 /** Version number of emlib peripheral API */
Kojto 98:8ab26030e058 54 #define _EMLIB_VERSION 3.20.12
Kojto 98:8ab26030e058 55 /** Major version of emlib */
Kojto 98:8ab26030e058 56 #define _EMLIB_VERSION_MAJOR 3
Kojto 98:8ab26030e058 57 /** Minor version of emlib */
Kojto 98:8ab26030e058 58 #define _EMLIB_VERSION_MINOR 20
Kojto 98:8ab26030e058 59 /** Patch revision of emlib */
Kojto 98:8ab26030e058 60 #define _EMLIB_VERSION_PATCH 12
Kojto 98:8ab26030e058 61
Kojto 98:8ab26030e058 62 /** @} (end addtogroup Version) */
Kojto 98:8ab26030e058 63 /** @} (end addtogroup EM_Library) */
Kojto 98:8ab26030e058 64
Kojto 98:8ab26030e058 65 #ifdef __cplusplus
Kojto 98:8ab26030e058 66 }
Kojto 98:8ab26030e058 67 #endif
Kojto 98:8ab26030e058 68
Kojto 98:8ab26030e058 69 #endif /* __SILICON_LABS_EM_VERSION_H_ */