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

Function app_main

example/FVP_Hello/project/app_main.c:47–59  ·  view source on GitHub ↗

Application initialization. */

Source from the content-addressed store, hash-verified

45 Application initialization.
46*/
47int app_main (void) {
48
49 /* Initialize CMSIS-RTOS2 */
50 osKernelInitialize();
51
52 /* Create application main thread */
53 thread_id_main = osThreadNew(app_main_thread, NULL, &thread_attr_main);
54
55 /* Start thread execution */
56 osKernelStart();
57
58 return 0;
59}

Callers 4

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

Calls

no outgoing calls

Tested by

no test coverage detected