Wojciech Rynczuk / Mbed 2 deprecated vcdMaker_Demo_DISCO_L476

Dependencies:   BSP_DISCO_L476VG COMPASS_DISCO_L476VG mbed vcdLogger vcdSignal

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers sync.hpp Source File

sync.hpp

00001 #include "mbed.h"
00002 #include "signal.hpp"
00003 
00004 class Sync : public Signal
00005 {
00006   public:
00007   Sync(const string& name, Logger& logger);
00008   Sync& operator=(unsigned int value);
00009   
00010   void PrintState();
00011   
00012   private:
00013   unsigned int m_State;
00014 };