From ea17090f1680d527eef08f8c12d9e9c1e04cd75c Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sat, 23 Sep 2017 23:45:22 +0200 Subject: [PATCH] rcinput: disable timer debug messages Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/72301a167b4e153f1550c1827fc859ffb26472c3 Author: Stefan Seyfried Date: 2017-09-23 (Sat, 23 Sep 2017) --- src/driver/rcinput.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/driver/rcinput.cpp b/src/driver/rcinput.cpp index 145cc8639..ed48a1a16 100644 --- a/src/driver/rcinput.cpp +++ b/src/driver/rcinput.cpp @@ -473,7 +473,7 @@ int CRCInput::addTimer(uint64_t Interval, bool oneshot, bool correct_time ) _newtimer.correct_time = correct_time; -printf("adding timer %d (0x%llx, 0x%llx)\n", _newtimer.id, _newtimer.times_out, Interval); +//printf("adding timer %d (0x%" PRIx64 ", 0x%" PRIx64 ")\n", _newtimer.id, _newtimer.times_out, Interval); std::vector::iterator e; for ( e= timers.begin(); e!= timers.end(); ++e ) @@ -486,7 +486,7 @@ printf("adding timer %d (0x%llx, 0x%llx)\n", _newtimer.id, _newtimer.times_out, void CRCInput::killTimer(uint32_t &id) { -printf("killing timer %d\n", id); +//printf("killing timer %d\n", id); if(id == 0) return;