雄介 太田 / mbed

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 _NORDIC_GLOBAL_H_
Kojto 93:e188a91d3eaa 2 #define _NORDIC_GLOBAL_H_
Kojto 93:e188a91d3eaa 3
Kojto 93:e188a91d3eaa 4 /* There are no global defines in mbed, so we need to define */
Kojto 93:e188a91d3eaa 5 /* mandatory conditional compilation flags here */
Kojto 93:e188a91d3eaa 6 //#define NRF51
Kojto 93:e188a91d3eaa 7 #ifndef DEBUG_NRF_USER
Kojto 93:e188a91d3eaa 8 #define DEBUG_NRF_USER
Kojto 93:e188a91d3eaa 9 #endif
Kojto 93:e188a91d3eaa 10 #ifndef BLE_STACK_SUPPORT_REQD
Kojto 93:e188a91d3eaa 11 #define BLE_STACK_SUPPORT_REQD
Kojto 93:e188a91d3eaa 12 #endif
Kojto 93:e188a91d3eaa 13 #ifndef BOARD_PCA10001
Kojto 93:e188a91d3eaa 14 #define BOARD_PCA10001
Kojto 93:e188a91d3eaa 15 #endif
Kojto 93:e188a91d3eaa 16
Kojto 93:e188a91d3eaa 17 #endif