/ * @brief * Program entry point * * @details * * @note * ******************************************************************************/
| 144 | * |
| 145 | ******************************************************************************/ |
| 146 | int main(void) |
| 147 | { |
| 148 | /* disable interrupt first */ |
| 149 | rt_hw_interrupt_disable(); |
| 150 | |
| 151 | /* init system setting */ |
| 152 | SystemInit(); |
| 153 | |
| 154 | /* startup RT-Thread RTOS */ |
| 155 | rtthread_startup(); |
| 156 | |
| 157 | return 0; |
| 158 | } |
| 159 | |
| 160 | /***************************************************************************//** |
| 161 | * @} |
nothing calls this directly
no test coverage detected