mirror of
https://github.com/elua/elua.git
synced 2025-01-25 01:02:54 +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:
parent
97160f1008
commit
9cc26b3d26
@ -69,6 +69,7 @@ SECTIONS
|
|||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
/* End Of .text section */
|
/* End Of .text section */
|
||||||
etext = .;
|
etext = .;
|
||||||
|
_fini = .;
|
||||||
_sidata = .;
|
_sidata = .;
|
||||||
} >IROM
|
} >IROM
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ specific_files = "startup_LPC17xx.c system_LPC17xx.c core_cm3.c platform.c mbed_
|
|||||||
|
|
||||||
# Check CPU
|
# Check CPU
|
||||||
if cputype == 'LPC1768':
|
if cputype == 'LPC1768':
|
||||||
ldscript = "lpc17xx.ld"
|
ldscript = "LPC17xx.ld"
|
||||||
else:
|
else:
|
||||||
print "Invalid LPC17xx CPU %s", cputype
|
print "Invalid LPC17xx CPU %s", cputype
|
||||||
sys.exit( -1 )
|
sys.exit( -1 )
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#define LPC17XX_CLKPWR_H_
|
#define LPC17XX_CLKPWR_H_
|
||||||
|
|
||||||
/* Includes ------------------------------------------------------------------- */
|
/* Includes ------------------------------------------------------------------- */
|
||||||
#include "lpc17xx.h"
|
#include "LPC17xx.h"
|
||||||
#include "lpc_types.h"
|
#include "lpc_types.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#define LPC17XX_PINSEL_H_
|
#define LPC17XX_PINSEL_H_
|
||||||
|
|
||||||
/* Includes ------------------------------------------------------------------- */
|
/* Includes ------------------------------------------------------------------- */
|
||||||
#include "lpc17xx.h"
|
#include "LPC17xx.h"
|
||||||
#include "lpc_types.h"
|
#include "lpc_types.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
Loading…
x
Reference in New Issue
Block a user