diff --git a/bsp/efm32/application.c b/bsp/efm32/application.c index 7e968790d263bd9c9a2a4be680b740b493895fe0..3d13a6290f709f9439d74f09f0d36ab4a3e1cd0f 100644 --- a/bsp/efm32/application.c +++ b/bsp/efm32/application.c @@ -114,12 +114,16 @@ void rt_demo_thread_entry(void* parameter) #endif #if defined(EFM32_USING_ETHERNET) + extern void httpd_init(void); + rt_device_t eth = RT_NULL; eth = rt_device_find(ETH_DEVICE_NAME); if (eth != RT_NULL) { eth->init(eth); + httpd_init(); + rt_kprintf("Http service init OK!\n"); } else { @@ -187,7 +191,6 @@ int rt_application_init() #if defined(RT_USING_LWIP) { extern void lwip_sys_init(void); - extern void httpd_init(void); /* Create Ethernet Threads */ if (eth_system_device_init() != RT_EOK) @@ -204,7 +207,6 @@ int rt_application_init() #endif /* init lwip system */ lwip_sys_init(); - httpd_init(); rt_kprintf("TCP/IP stack init OK!\n"); } #endif diff --git a/bsp/efm32/rtconfig.h b/bsp/efm32/rtconfig.h index 11eab40685d2e322c55128b698bff4e32bc34b98..951225b98f76cbcb07a34df161c038e5e6b0fece 100644 --- a/bsp/efm32/rtconfig.h +++ b/bsp/efm32/rtconfig.h @@ -30,7 +30,7 @@ /* SECTION: RT_DEBUG */ #define RT_DEBUG -//#define RT_MEM_DEBUG (1) +//#define RT_DEBUG_MEM (1) //#define RT_DEBUG_SCHEDULER (1) //#define THREAD_DEBUG //#define IRQ_DEBUG