1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
tmk_keyboard_custom/tmk_core/tool/mbed/mbed-sdk/libraries/tests/rtos/cmsis/signals/main.cpp

24 lines
501 B
C++

#include "mbed.h"
#include "cmsis_os.h"
DigitalOut led(LED1);
void led_thread(void const *argument) {
while (true) {
// Signal flags that are reported as event are automatically cleared.
osSignalWait(0x1, osWaitForever);
led = !led;
}
}
osThreadDef(led_thread, osPriorityNormal, DEFAULT_STACK_SIZE);
int main (void) {
osThreadId tid = osThreadCreate(osThread(led_thread), NULL);
while (true) {
osDelay(1000);
osSignalSet(tid, 0x1);
}
}