Hi ,
Thank you for the replies. But i don't know much about programming
so can anyone tell me how do i change the work function of block so that I
can make it work.
Thanks
sandhya
---------- Forwarded message ----------
From: MHMND Herath <[email protected]>
Date: Wed, Jan 1, 2014 at 11:10 PM
Subject: Re: [Discuss-gnuradio] Nand D flipflop in gnuradio
To: Sandhya G <[email protected]>
NAND can implement easily by creating C++ block and take input as what you
want.
if (in0[i]==1 && in1[i]==1)
{
out[i]=0;
}
else
{
out[i]=1;
}
see Block structure how C++ work function and coding two inputs in c++
Neil
---------- Original Message -----------
From: Sandhya G <[email protected]>
To: "[email protected]" <[email protected]>
Sent: Mon, 30 Dec 2013 12:26:29 +0530
Subject: [Discuss-gnuradio] Nand D flipflop in gnuradio
> Hi,
>
> Out of curiosity for implementing the digital circuits in
> gnuradio, I tried implementing nand D flipflop in gnuradio but stuck
> with it because gnuradio can't support loops.
>
> I'm attaching grc file of what I tried. Can someone tell me how
> to make it work.
>
> Thanks in advance
>
> sandhya
------- End of Original Message -------
_______________________________________________
Discuss-gnuradio mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio