mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Committer:
Kojto
Date:
Tue Feb 03 15:31:20 2015 +0000
Revision:
93:e188a91d3eaa
Release 93 of the mbed library

Main changes:

- Renesas RZ_A1H bugfixes - i2c, ticker
- new targets - Nucleo F303RE, Nucleo F070RB, BLE SMURFS,
Dragonfly 411RE,
- BusXXX - is connected method, plus operators addition
- LPC8xx - I2c fixes
- timestamp_t reverted to uint32_t
- RTX - fixes regarding stack (alignment, magic word)

Who changed what in which revision?

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