MCPcopy Create free account
hub / github.com/ARM-software/AVH / app_main

Function app_main

example/FVP_Video/project/app_main.c:176–188  ·  view source on GitHub ↗

Application initialization. */

Source from the content-addressed store, hash-verified

174 Application initialization.
175*/
176int app_main (void) {
177
178 /* Initialize CMSIS-RTOS2 */
179 osKernelInitialize();
180
181 /* Create application main thread */
182 thread_id_main = osThreadNew(app_main_thread, NULL, &thread_attr_main);
183
184 /* Start thread execution */
185 osKernelStart();
186
187 return 0;
188}

Callers 4

mainFunction · 0.50
mainFunction · 0.50
mainFunction · 0.50
mainFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected