Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sis8300llrf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
epics-modules
RF
sis8300llrf
Commits
819853f5
Commit
819853f5
authored
4 years ago
by
Gabriel Fedel
Committed by
Gabriel Fedel
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sis8300llrfAuxChannel.cpp
+2
-4
2 additions, 4 deletions
src/sis8300llrfAuxChannel.cpp
with
2 additions
and
4 deletions
src/sis8300llrfAuxChannel.cpp
+
2
−
4
View file @
819853f5
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment