Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
Kojto
Date:
Tue Mar 17 14:27:45 2015 +0000
Revision:
96:487b796308b0
Parent:
76:824293ae5e43
Release 96 of the mbed library

Changes:
- IAR support for ble boards, lpc, ethernet stack
- RTC - attach function to redirect time functions
- Nucleo F103RB - cube driver
- k20xx - fixes for teensy and k20 platforms in sleep/deepsleep and usb
- STM32L0, Nucleo/Disco L053 - refactoring

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