Application initialization. */
| 45 | Application initialization. |
| 46 | */ |
| 47 | int 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 | } |