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:
44:24d45a770a51
Parent:
40:976df7c37ad5
Child:
54:71b101360fb9
--- a/LPC2368/vector_defns.h	Fri Oct 26 17:40:46 2012 +0100
+++ b/LPC2368/vector_defns.h	Wed Nov 21 10:49:56 2012 +0000
@@ -56,8 +56,8 @@
 #define F_Bit 0x40    // when F bit is set, FIQ is disabled
 
 // MCU RAM
-#define LPC2368_RAM_ADDRESS 0x40000000	// RAM Base
-#define LPC2368_RAM_SIZE 0x8000		// 32KB 
+#define LPC2368_RAM_ADDRESS 0x40000000    // RAM Base
+#define LPC2368_RAM_SIZE 0x8000        // 32KB 
 
 // ISR Stack Allocation
 #define UND_stack_size  0x00000040
@@ -70,6 +70,6 @@
 
 // Full Descending Stack, so top-most stack points to just above the top of RAM
 #define LPC2368_STACK_TOP (LPC2368_RAM_ADDRESS + LPC2368_RAM_SIZE)
-#define USR_STACK_TOP	  (LPC2368_STACK_TOP - ISR_stack_size)
+#define USR_STACK_TOP      (LPC2368_STACK_TOP - ISR_stack_size)
 
 #endif