Commit 560b6446 authored by Projects's avatar Projects

Fixed efm32_hello.

parent c116e817
...@@ -127,7 +127,6 @@ C_SRC += \ ...@@ -127,7 +127,6 @@ C_SRC += \
../common/emlib/src/em_emu.c \ ../common/emlib/src/em_emu.c \
../common/emlib/src/em_gpio.c \ ../common/emlib/src/em_gpio.c \
../common/emlib/src/em_system.c \ ../common/emlib/src/em_system.c \
../common/udelay.c \
blink.c blink.c
s_SRC += s_SRC +=
......
...@@ -68,8 +68,6 @@ void Delay(uint32_t dlyTicks) ...@@ -68,8 +68,6 @@ void Delay(uint32_t dlyTicks)
*****************************************************************************/ *****************************************************************************/
int main(void) int main(void)
{ {
int i;
/* Setup SysTick Timer for 1 msec interrupts */ /* Setup SysTick Timer for 1 msec interrupts */
if (SysTick_Config(CMU_ClockFreqGet(cmuClock_CORE) / 1000)) while (1); if (SysTick_Config(CMU_ClockFreqGet(cmuClock_CORE) / 1000)) while (1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment