This is the vcdMaker demo project. See http://vcdmaker.org for details. vcdMaker is supposed to help engineers to debug their applications and systems. It transforms text log files into the VCD format which can be easily displayed as a waveform.

Dependencies:   mbed vcdLogger vcdSignal

Revision:
3:6d5e16097db0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Signals/sync.hpp	Wed Dec 07 09:16:38 2016 +0000
@@ -0,0 +1,11 @@
+
+#include "mbed.h"
+#include "signal.hpp"
+
+class Sync : public DigitalIn, public Signal
+{
+  public:
+  Sync(const string& name, const PinName pin, Logger& logger);
+  
+  void PrintState();
+};