Dear karthiks,
you missed my point but maybe I didn't get the problem either.
As far as I understand, your DRNN box is set-up to consider 1 sample at a time. On the first hand, when you read a CSV file, your are allowed to send samples 1 by 1. On the other hand when you get read signals from the acquisition server, you are not allowed to do that and can only go down to 4 samples per block (this is anyway easy to change if you want to test). Considering this, I see to options :
- you want to process each of the 4 samples of the box individually
Then your box should include code like this :
Code:
for(uint32 i=0; i<samlples_per_block; i++)
{
do_it_like_when_you_had_one_sample(sample_i)
}
The scenario should not be changed in this case.
- or you want to process only one sample for this chunk
In this case, either select the 1st sample (this does not change the scenario), or use downsampling to reduce the block to only 1 sample (means changing the scenario).
Yann