Mini can app

Dependencies:   mbed mbed-STM32F103C8T6

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers wicedmutex.cpp Source File

wicedmutex.cpp

00001 #include "wicedmutex.h"
00002 
00003 void wiced_rtos_init_mutex(wiced_mutex_t* pointer) {
00004     
00005     // nothing for now
00006     return;    
00007 }
00008 void wiced_rtos_lock_mutex(wiced_mutex_t* pointer) {
00009     return;    
00010 }
00011 void wiced_rtos_unlock_mutex(wiced_mutex_t* pointer) {
00012     return;    
00013 }