Radio Structures in OOP

Dependencies:   mbed mbed-rtos

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ThreadHelper.h Source File

ThreadHelper.h

00001 #ifndef THREAD_HELPER_H
00002 #define THREAD_HELPER_H
00003 
00004 #include "mbed.h"
00005 #include "cmsis_os.h"
00006 
00007 extern void define_thread(osThreadDef_t&, void(*task)(void const *arg), osPriority = osPriorityNormal, uint32_t = DEFAULT_STACK_SIZE, unsigned char* = NULL);
00008 
00009 #endif  // THREAD_HELPER_H