finish homework2

Dependencies:   TextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers signal_wrapper.cpp Source File

signal_wrapper.cpp

00001 #include "mbed.h"
00002 #include <cctype>
00003 
00004 EventFlags event_flags;
00005 
00006 uint32_t send_signal( uint32_t flags )
00007 {
00008     return event_flags.set( flags );
00009 }
00010 
00011 uint32_t wait_for_signal( uint32_t flags )
00012 {
00013     return event_flags.wait_any( flags );    
00014 }