1)SwitchMatrix SwitchMatrix_Init() was generated by NXP Switch Matrix Tool 2)RawSerial class To make the code size smaller RawSerial class is in the latest mbed library(lpc812)
Diff: lpc810.s
- Revision:
- 0:e5f3c8836d1c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lpc810.s Fri Feb 28 10:16:28 2014 +0000 @@ -0,0 +1,22 @@ +;patch for lpc810 +; + PRESERVE8 + THUMB + + AREA |.text|, CODE, READONLY + +Reset_Handler PROC + EXPORT Reset_Handler + IMPORT SystemInit + IMPORT __main + LDR R0, =0x10000400 + MOV SP,R0 + LDR R0, =SystemInit + BLX R0 + LDR R0, =__main+4 + BX R0 + ENDP + + ALIGN + + END