1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00

- Case sensitiveness fixes on the mbed drivers and conf

- Added a linker ref to a weird symbol that avoided the build
(Tks James for the help!)
This commit is contained in:
Dado Sutter 2010-02-24 21:39:40 +00:00
parent 97160f1008
commit 9cc26b3d26
4 changed files with 4 additions and 3 deletions

View File

@ -69,6 +69,7 @@ SECTIONS
. = ALIGN(4);
/* End Of .text section */
etext = .;
_fini = .;
_sidata = .;
} >IROM

View File

@ -11,7 +11,7 @@ specific_files = "startup_LPC17xx.c system_LPC17xx.c core_cm3.c platform.c mbed_
# Check CPU
if cputype == 'LPC1768':
ldscript = "lpc17xx.ld"
ldscript = "LPC17xx.ld"
else:
print "Invalid LPC17xx CPU %s", cputype
sys.exit( -1 )

View File

@ -28,7 +28,7 @@
#define LPC17XX_CLKPWR_H_
/* Includes ------------------------------------------------------------------- */
#include "lpc17xx.h"
#include "LPC17xx.h"
#include "lpc_types.h"
#ifdef __cplusplus

View File

@ -28,7 +28,7 @@
#define LPC17XX_PINSEL_H_
/* Includes ------------------------------------------------------------------- */
#include "lpc17xx.h"
#include "LPC17xx.h"
#include "lpc_types.h"
#ifdef __cplusplus