Skip to content
Snippets Groups Projects
Commit 819853f5 authored by Gabriel Fedel's avatar Gabriel Fedel :speech_balloon: Committed by Gabriel Fedel
Browse files

auxch: Remove alignment from SMNM PV

The aligment should happen only on memory.
parent e1a1fce6
No related branches found
No related tags found
No related merge requests found
......@@ -53,8 +53,6 @@ std::string sis8300llrfAuxChannel::
PV_REASON_AUX_QANG = "AUXQAng";
#define ROUNDUP_TWOHEX(val) ((unsigned) (val + 0x1F) &~0x1F)
/**
* @brief Aux channel constructor.
*/
......@@ -397,9 +395,9 @@ ndsStatus sis8300llrfAuxChannel::setAUXSamplesCount(
dec_fac = 1;
//check if the value is in the interval limit
if (value > _LimitSamplesDec/dec_fac)
_ParamVals[aux_param_samples_cnt] = (int) ROUNDUP_TWOHEX(_LimitSamplesDec/dec_fac);
_ParamVals[aux_param_samples_cnt] = (int) _LimitSamplesDec/dec_fac;
else
_ParamVals[aux_param_samples_cnt] = (int) ROUNDUP_TWOHEX(value);
_ParamVals[aux_param_samples_cnt] = (int) value;
_ParamChanges[aux_param_samples_cnt] = 1;
return commitParameters();
......
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