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:
bogdanm
Date:
Fri Sep 12 16:41:52 2014 +0100
Revision:
89:552587b429a1
Parent:
76:824293ae5e43
Release 89 of the mbed library

Main changes:

- low power optimizations for Nordic targets
- code structure changes for Freescale K64F targets
- bug fixes in various backends

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 76:824293ae5e43 1 #ifndef SYS_HELPER_H
bogdanm 76:824293ae5e43 2 #define SYS_HELPER_H
bogdanm 76:824293ae5e43 3
bogdanm 76:824293ae5e43 4 #include <stdint.h>
bogdanm 76:824293ae5e43 5
bogdanm 76:824293ae5e43 6 #ifdef __cplusplus
bogdanm 76:824293ae5e43 7 extern "C" {
bogdanm 76:824293ae5e43 8 #endif
bogdanm 76:824293ae5e43 9
bogdanm 76:824293ae5e43 10 uint32_t __reserved_stack_size();
bogdanm 76:824293ae5e43 11
bogdanm 76:824293ae5e43 12 #ifdef __cplusplus
bogdanm 76:824293ae5e43 13 }
bogdanm 76:824293ae5e43 14 #endif
bogdanm 76:824293ae5e43 15
bogdanm 76:824293ae5e43 16 #endif