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

Committer:
ketjow
Date:
Wed Dec 07 09:16:38 2016 +0000
Revision:
3:6d5e16097db0
Parent:
2:a13cde5c679c
Sync signal added

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ketjow 1:446154224f92 1 /*!
ketjow 1:446154224f92 2 @file button.hpp
ketjow 1:446154224f92 3
ketjow 1:446154224f92 4 The header of the button signal class.
ketjow 1:446154224f92 5
ketjow 1:446154224f92 6 @par Full Description
ketjow 1:446154224f92 7 The header of the button signal class.
ketjow 1:446154224f92 8
ketjow 1:446154224f92 9 @if REVISION_HISTORY_INCLUDED
ketjow 1:446154224f92 10 @par Edit History
ketjow 1:446154224f92 11 @li [0] wojciech.rynczuk@wp.pl 20-JAN-2015 Initial file revision.
ketjow 1:446154224f92 12 @endif
ketjow 1:446154224f92 13
ketjow 1:446154224f92 14 @ingroup Signal
ketjow 1:446154224f92 15
ketjow 2:a13cde5c679c 16 The MIT License (MIT)
ketjow 2:a13cde5c679c 17 Copyright (c) 2016 Wojciech Rynczuk
ketjow 1:446154224f92 18
ketjow 1:446154224f92 19 */
ketjow 1:446154224f92 20
ketjow 0:9a59cffaafad 21 #include "mbed.h"
ketjow 0:9a59cffaafad 22 #include "signal.hpp"
ketjow 0:9a59cffaafad 23
ketjow 0:9a59cffaafad 24 class Button : public DigitalIn, public Signal
ketjow 0:9a59cffaafad 25 {
ketjow 0:9a59cffaafad 26 public:
ketjow 0:9a59cffaafad 27 Button(const string& name, const PinName pin, Logger& logger);
ketjow 0:9a59cffaafad 28
ketjow 0:9a59cffaafad 29 void PrintState();
ketjow 0:9a59cffaafad 30 };