Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed mbed-STM32F103C8T6
wicedmutex.h
00001 #ifndef __WICED_MUTEX_H 00002 #define __WICED_MUTEX_H 00003 00004 struct wiced_mutex 00005 { 00006 int x; 00007 }; 00008 00009 typedef struct wiced_mutex wiced_mutex_t; 00010 00011 00012 void wiced_rtos_init_mutex(wiced_mutex_t* pointer); 00013 void wiced_rtos_lock_mutex(wiced_mutex_t* pointer); 00014 void wiced_rtos_unlock_mutex(wiced_mutex_t* pointer); 00015 #endif
Generated on Fri Jul 15 2022 20:08:26 by
1.7.2