Skip to content
Snippets Groups Projects
Commit 240190c2 authored by Erik von Reis's avatar Erik von Reis
Browse files

rcg: added cycle count when copying awg data to model

parent ed289753
No related branches found
No related tags found
1 merge request!215Simplified awg data mbuf handles excitation data streaming from awg to models
......@@ -710,12 +710,12 @@ daqWrite( int flag,
if ( localTable[ ii ].type == DAQ_SRC_FM_EXC )
{
dspPtr->data[ localTable[ ii ].fmNum ].exciteInput =
*awg_page->buf;
awg_page->buf[excSlot];
}
else if ( localTable[ ii ].type == DAQ_SRC_NFM_EXC )
{
// extra excitation
excSignal[ localTable[ ii ].fmNum ] = *awg_page->buf;
excSignal[ localTable[ ii ].fmNum ] = awg_page->buf[excSlot];
}
}
// else dspPtr->data[localTable[ii].fmNum].exciteInput = 0.0;
......
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