]> gitweb.hamatoma.de Git - cpidjinn/commitdiff
tracing server --test
authorhama <hama@siduction.net>
Wed, 15 Jun 2016 18:24:39 +0000 (20:24 +0200)
committerhama <hama@siduction.net>
Wed, 15 Jun 2016 18:24:39 +0000 (20:24 +0200)
Server/cpidjinn.cpp
Server/gpiotimer.cpp

index f37013c09cbd351285811273f80672a8c8de726d..517c2bada60b642f1e394b3a1821738a56aa57aa 100644 (file)
@@ -1,6 +1,7 @@
 #include "cpidjinn.hpp"
 
 void blink(PinNumber pin, int count, int duration, Logger* logger){
+       printf("blink pin: %d count: %d duration: %d\n", pin, count, duration);
        GPIOProcessor proc(logger);
        for (int ix = 0; ix < count; ix++){
                proc.writeToGPIO(pin, psHigh);
index 80c87f3392f511244eeecf02ccb6b9508a74d391..9575ae6f85bc95bb7d4235ad0dad9aced500af3a 100644 (file)
@@ -29,7 +29,7 @@ GPIOTimer::~GPIOTimer() {
  * @param state                <i>psLow</i> or <i>psHigh</i>
  */
 void GPIOTimer::switchState(PinState state){
-       m_logger->sayf(LOG_DEBUG, "%d: %c", m_pin, psHigh ? 'H' : 'L');
+       m_logger->sayf(LOG_DEBUG, "pin %d: %c", m_pin, psHigh ? 'H' : 'L');
        m_processor->writeToGPIO(m_pin, state);
 }
 /**