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:
54:71b101360fb9
Parent:
44:24d45a770a51
--- a/LPC2368/vector_defns.h	Thu Dec 06 17:03:27 2012 +0000
+++ b/LPC2368/vector_defns.h	Tue Jan 08 12:46:36 2013 +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