LPC11C24: __low_init() renamed to commonly known SystemInit()

This commit is contained in:
Pavel Kirienko
2014-04-15 22:57:24 +04:00
parent a392f5c61c
commit 272c05edf1
2 changed files with 3 additions and 3 deletions
@@ -129,7 +129,7 @@ void setErrorLed(bool state)
extern "C"
{
void __low_init()
void SystemInit()
{
board::init();
}
@@ -26,7 +26,7 @@ extern funptr_t __init_array_end;
__attribute__((noreturn))
extern int main(void);
extern void __low_init(void);
extern void SystemInit(void);
/**
* Firmware entry point
@@ -47,7 +47,7 @@ void Reset_Handler(void)
// BSS section
fill32(&_bss, &_ebss, 0);
__low_init();
SystemInit();
// Constructors
{