avr-fw-modules/core/src/thread_sleep_irq.c

16 lines
194 B
C
Raw Normal View History

2017-09-27 13:25:39 +02:00
#include <sys/threads.h>
#include <stdlib.h>
void thread_sleep_irq(THREAD* thread)
{
if (thread == NULL)
thread = current_thread();
thread->wait = 1;
schedule_thread( thread );
};