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.

Revision:
115:87f2f5183dfb
Parent:
104:b9ad9a133dc7
--- a/TARGET_NRF51_MICROBIT/core_ca9.h	Tue Feb 16 14:28:01 2016 +0000
+++ b/TARGET_NRF51_MICROBIT/core_ca9.h	Wed Mar 02 09:58:28 2016 +0100
@@ -89,6 +89,11 @@
   #define __STATIC_INLINE  static inline
   #define __STATIC_ASM     static __asm
 
+#include <stdint.h>
+inline uint32_t __get_PSR(void) {
+	__ASM("mrs r0, cpsr");
+}
+
 #elif defined ( __TMS470__ )
   #define __ASM            __asm                                      /*!< asm keyword for TI CCS Compiler       */
   #define __STATIC_INLINE  static inline