| 149 | /* __low_level_init will auto called by IAR cstartup */ |
| 150 | extern void __iar_data_init3(void); |
| 151 | int __low_level_init(void) |
| 152 | { |
| 153 | // call IAR table copy function. |
| 154 | __iar_data_init3(); |
| 155 | rtthread_startup(); |
| 156 | return 0; |
| 157 | } |
| 158 | #elif defined(__GNUC__) |
| 159 | /* Add -eentry to arm-none-eabi-gcc argument */ |
| 160 | int entry(void) |
nothing calls this directly
no test coverage detected