| 224 | /* system entry */ |
| 225 | extern int rtthread_startup(void); |
| 226 | int wmain(int argc, char* argv[]) |
| 227 | { |
| 228 | /* disable interrupt first */ |
| 229 | rt_hw_interrupt_disable(); |
| 230 | /* startup RT-Thread RTOS */ |
| 231 | rtthread_startup(); |
| 232 | } |
| 233 | #pragma comment(linker, "/subsystem:console /entry:wmainCRTStartup") |
| 234 | |
| 235 | #ifndef RT_USING_HEAP |
nothing calls this directly
no test coverage detected