Skip to content
Snippets Groups Projects
Commit 6317046e authored by Sonia Minolli's avatar Sonia Minolli
Browse files

Updates for threaded tasks (TANGODEVIC-1647)

parent a4de2927
No related branches found
No related tags found
No related merge requests found
...@@ -638,6 +638,7 @@ void ThreadedAction::exit (void) ...@@ -638,6 +638,7 @@ void ThreadedAction::exit (void)
void TIMIQLib::ExecuteAction(timIQConfig & cfg) void TIMIQLib::ExecuteAction(timIQConfig & cfg)
{ {
E_timiq_errno_t err; E_timiq_errno_t err;
E_timiq_cmd_t cmd;
CHECK_TIMIQ_HW; CHECK_TIMIQ_HW;
...@@ -670,7 +671,8 @@ void TIMIQLib::ExecuteAction(timIQConfig & cfg) ...@@ -670,7 +671,8 @@ void TIMIQLib::ExecuteAction(timIQConfig & cfg)
//- PLL calibration -- soso add //- PLL calibration -- soso add
case TI_CALIB: case TI_CALIB:
cfg.ti_err = m_timiq_hw->write_command(RECALIBRATE_PLL); cmd = RECALIBRATE_PLL;
cfg.ti_err = m_timiq_hw->write_command(cmd);
this->end_task(); this->end_task();
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment