Application initialization. */
| 174 | Application initialization. |
| 175 | */ |
| 176 | int 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 | } |