Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
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
RadioObservatory
LOFAR
Commits
8033f52a
Commit
8033f52a
authored
18 years ago
by
wierenga
Browse files
Options
Downloads
Patches
Plain Diff
BugID: 708
Always send beamformer weights every second
parent
07bfa5c1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
MAC/APL/PIC/RSPDriver/src/BWWrite.cc
+15
-4
15 additions, 4 deletions
MAC/APL/PIC/RSPDriver/src/BWWrite.cc
with
15 additions
and
4 deletions
MAC/APL/PIC/RSPDriver/src/BWWrite.cc
+
15
−
4
View file @
8033f52a
...
...
@@ -58,12 +58,14 @@ void BWWrite::sendrequest()
{
uint8
global_blp
=
(
getBoardId
()
*
StationSettings
::
instance
()
->
nrBlpsPerBoard
())
+
m_blp
;
#if 0
// skip update if the BF weights if they have not been modified
if (RTC::RegisterState::MODIFIED != Cache::getInstance().getBFState().get(global_blp * MEPHeader::N_PHASEPOL + m_regid))
{
setContinue(true);
return;
}
#endif
// reset m_offset and m_remaining for each register
if
(
0
==
getCurrentIndex
())
{
...
...
@@ -209,15 +211,24 @@ GCFEvent::TResult BWWrite::handleack(GCFEvent& event, GCFPortInterface& /*port*/
EPAWriteackEvent
ack
(
event
);
uint8
global_blp
=
(
getBoardId
()
*
StationSettings
::
instance
()
->
nrBlpsPerBoard
())
+
m_blp
;
if
(
!
ack
.
hdr
.
isValidAck
(
m_hdr
))
{
Cache
::
getInstance
().
getBFState
().
modified
(
global_blp
*
MEPHeader
::
N_PHASEPOL
+
m_regid
);
LOG_ERROR
(
"BWWrite::handleack: invalid ack"
);
return
GCFEvent
::
NOT_HANDLED
;
}
if
((
BF_N_FRAGMENTS
-
1
)
==
getCurrentIndex
())
{
uint8
global_blp
=
(
getBoardId
()
*
StationSettings
::
instance
()
->
nrBlpsPerBoard
())
+
m_blp
;
Cache
::
getInstance
().
getBFState
().
confirmed
(
global_blp
*
MEPHeader
::
N_PHASEPOL
+
m_regid
);
}
else
{
// only mark confirmed when the last fragment has been received OK
if
((
BF_N_FRAGMENTS
-
1
)
==
getCurrentIndex
())
{
Cache
::
getInstance
().
getBFState
().
confirmed
(
global_blp
*
MEPHeader
::
N_PHASEPOL
+
m_regid
);
}
else
{
Cache
::
getInstance
().
getBFState
().
applied
(
global_blp
*
MEPHeader
::
N_PHASEPOL
+
m_regid
);
}
}
return
GCFEvent
::
HANDLED
;
...
...
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