diff options
Diffstat (limited to 'projects/rtos-test/thread-test.c')
-rw-r--r-- | projects/rtos-test/thread-test.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/projects/rtos-test/thread-test.c b/projects/rtos-test/thread-test.c new file mode 100644 index 0000000..8b31a26 --- /dev/null +++ b/projects/rtos-test/thread-test.c @@ -0,0 +1,24 @@ +#include "cmsis_os.h" + +#include "stm-init.h" +#include "stm-led.h" + +void led2_thread(void const *args) +{ + while (1) { + led_toggle(LED_BLUE); + osDelay(1000); + } +} +osThreadDef(led2_thread, osPriorityNormal, DEFAULT_STACK_SIZE); + +int main() +{ + stm_init(); + osThreadCreate(osThread(led2_thread), NULL); + + while (1) { + led_toggle(LED_GREEN); + osDelay(500); + } +} |