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:
Anna Bridge
Date:
Wed May 10 11:31:27 2017 +0100
Revision:
142:4eea097334d6
Release 142 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

4059: [Silicon Labs] Rename targets https://github.com/ARMmbed/mbed-os/pull/4059
4187: [NCS36510] Reduce default heap size allocated by IAR to 1/4 of RAM https://github.com/ARMmbed/mbed-os/pull/4187
4225: fixed missing device_name for xDot and removed progen https://github.com/ARMmbed/mbed-os/pull/4225
4251: Fix C++11 build error w/ u-blox EVK-ODIN-W2 https://github.com/ARMmbed/mbed-os/pull/4251
4236: STM32 Fixed warning related to __packed redefinition https://github.com/ARMmbed/mbed-os/pull/4236
4190: LPC4088: Enable LWIP feature https://github.com/ARMmbed/mbed-os/pull/4190
4260: Inherit Xadow M0 target from LPC11U35_501 https://github.com/ARMmbed/mbed-os/pull/4260
4249: Add consistent button names across targets https://github.com/ARMmbed/mbed-os/pull/4249

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Anna Bridge 142:4eea097334d6 1 /***************************************************************************//**
Anna Bridge 142:4eea097334d6 2 * @file device.h
Anna Bridge 142:4eea097334d6 3 *******************************************************************************
Anna Bridge 142:4eea097334d6 4 * @section License
Anna Bridge 142:4eea097334d6 5 * <b>(C) Copyright 2015 Silicon Labs, http://www.silabs.com</b>
Anna Bridge 142:4eea097334d6 6 *******************************************************************************
Anna Bridge 142:4eea097334d6 7 *
Anna Bridge 142:4eea097334d6 8 * SPDX-License-Identifier: Apache-2.0
Anna Bridge 142:4eea097334d6 9 *
Anna Bridge 142:4eea097334d6 10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
Anna Bridge 142:4eea097334d6 11 * not use this file except in compliance with the License.
Anna Bridge 142:4eea097334d6 12 * You may obtain a copy of the License at
Anna Bridge 142:4eea097334d6 13 *
Anna Bridge 142:4eea097334d6 14 * http://www.apache.org/licenses/LICENSE-2.0
Anna Bridge 142:4eea097334d6 15 *
Anna Bridge 142:4eea097334d6 16 * Unless required by applicable law or agreed to in writing, software
Anna Bridge 142:4eea097334d6 17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
Anna Bridge 142:4eea097334d6 18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Anna Bridge 142:4eea097334d6 19 * See the License for the specific language governing permissions and
Anna Bridge 142:4eea097334d6 20 * limitations under the License.
Anna Bridge 142:4eea097334d6 21 *
Anna Bridge 142:4eea097334d6 22 ******************************************************************************/
Anna Bridge 142:4eea097334d6 23 #ifndef MBED_DEVICE_H
Anna Bridge 142:4eea097334d6 24 #define MBED_DEVICE_H
Anna Bridge 142:4eea097334d6 25
Anna Bridge 142:4eea097334d6 26 #include "cmsis.h"
Anna Bridge 142:4eea097334d6 27 #include "objects.h"
Anna Bridge 142:4eea097334d6 28 #include "device_peripherals.h"
Anna Bridge 142:4eea097334d6 29
Anna Bridge 142:4eea097334d6 30 #endif