Home
last modified time | relevance | path

Searched refs:LowPrioThread (Results 1 – 2 of 2) sorted by relevance

/device/board/bearpi/bearpi_hm_nano/app/A4_kernel_mutex/
DREADME.md94 void LowPrioThread(void)
98 printf("LowPrioThread is running.\n");
132 attr.name = "LowPrioThread";
134 if (osThreadNew((osThreadFunc_t)LowPrioThread, NULL, &attr) == NULL) {
135 printf("Failed to create LowPrioThread!\n");
165 LowPrioThread is running.
173 LowPrioThread is running.
Dmutex_example.c59 void LowPrioThread(void) in LowPrioThread() function
99 if (osThreadNew((osThreadFunc_t)LowPrioThread, NULL, &attr) == NULL) { in MutexExample()