MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / __low_level_init

Function __low_level_init

src/components.c:151–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149/* __low_level_init will auto called by IAR cstartup */
150extern void __iar_data_init3(void);
151int __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 */
160int entry(void)

Callers

nothing calls this directly

Calls 1

rtthread_startupFunction · 0.70

Tested by

no test coverage detected