| 12 | #include <rtthread.h> |
| 13 | |
| 14 | void rt_init_thread_entry(void* parameter) |
| 15 | { |
| 16 | rt_components_init(); |
| 17 | |
| 18 | #ifdef RT_USING_LWIP |
| 19 | cme_m7_eth_init(); |
| 20 | |
| 21 | set_if("e0", "192.168.1.99", "192.168.1.1", "255.255.255.0"); |
| 22 | #endif /* RT_USING_LWIP */ |
| 23 | } |
| 24 | |
| 25 | int rt_application_init() |
| 26 | { |
nothing calls this directly
no test coverage detected