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.cpp
ketjow 1:446154224f92 3
ketjow 1:446154224f92 4 The implementation of the button signal class.
ketjow 1:446154224f92 5
ketjow 1:446154224f92 6 @par Full Description
ketjow 1:446154224f92 7 The implementation 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 1:446154224f92 21 #include "button.hpp"
ketjow 0:9a59cffaafad 22
ketjow 1:446154224f92 23 Button::Button(const string& name, const PinName pin, Logger& logger) : DigitalIn(pin), Signal(name,1,logger)
ketjow 1:446154224f92 24 {
ketjow 1:446154224f92 25 }
ketjow 0:9a59cffaafad 26
ketjow 1:446154224f92 27 void Button::PrintState()
ketjow 1:446154224f92 28 {
ketjow 1:446154224f92 29 string suffix("");
ketjow 1:446154224f92 30 int32_t time_ref = 0;
ketjow 1:446154224f92 31 if (read())
ketjow 0:9a59cffaafad 32 {
ketjow 1:446154224f92 33 string msg("Key released");
ketjow 1:446154224f92 34 PrintVector(0, suffix, msg, time_ref);
ketjow 1:446154224f92 35 }
ketjow 1:446154224f92 36 else
ketjow 1:446154224f92 37 {
ketjow 1:446154224f92 38 string msg("Key pressed");
ketjow 1:446154224f92 39 PrintVector(1, suffix, msg, time_ref);
ketjow 1:446154224f92 40 }
ketjow 1:446154224f92 41 }