From 9bcdecb800ec3986a42611bccfc518afc9b9c919 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20J=C3=BCrges?= <jurges@astron.nl> Date: Wed, 9 May 2018 12:47:12 +0000 Subject: [PATCH] Task #11328: Removed the multiplication with 10 of the period in the READBAND command. --- MAC/APL/PIC/TBB_Driver/src/tbbctl.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MAC/APL/PIC/TBB_Driver/src/tbbctl.cc b/MAC/APL/PIC/TBB_Driver/src/tbbctl.cc index 3256f6d0443..1c9628cc57d 100644 --- a/MAC/APL/PIC/TBB_Driver/src/tbbctl.cc +++ b/MAC/APL/PIC/TBB_Driver/src/tbbctl.cc @@ -4089,8 +4089,7 @@ Command* TBBCtl::parse_options(int argc, char** argv) cmd->setTime(time); cmd->setSlicenr(slicenr); - cmd->setPeriod(static_cast< uint32>( - std::lround(period * 10.0))); + cmd->setPeriod(period); select.clear(); select.push_back(board); -- GitLab