Re: [Discuss-gnuradio] pktno ??!!

2013-04-02 Thread Manu T S
Hi,

It's not clear where in packet_utils.py you have introduced this bit of
code.
packet_utils.py contains definitions of certain functions.
Suppose you introduce this bit of code in the function make_packet defined
inside packet_utils.py
make_packet() will be called by an instance of mod_pkts() defined inside
pkt.py, into which payload is passed.
So, when the send_pkt(payload) is called for the first time, it enters the
while loop and it is executed indefinitely. The len(payload) will be
computed from the first payload that is passed into the make_packet().

To know the transmitted packet number you should have put the same code in
benchmark_tx.py at a suitable location.


On Tue, Apr 2, 2013 at 3:21 AM, manjusha yandamuri.ma...@gmail.com wrote:

 Hi,

 I put the following code in packet_utils.py

 n=0
 while len(pkt)!= :
  print make_packet: len(pkt) =,len(payload)
 # n=n+1
  print pktno,n
  n=n+1
 what it did is ,it kept incrementing until i stop it.Although i connect the
 usrp to the computer or not,it keeps incrementing.
 How can we know the correct number of packets tranmitted from this.The
 packet numbers i get are in any way right??!!

 Thanks..



 -
 Manjusha
 --
 View this message in context:
 http://gnuradio.4.n7.nabble.com/pktno-tp40416p40483.html
 Sent from the GnuRadio mailing list archive at Nabble.com.

 ___
 Discuss-gnuradio mailing list
 Discuss-gnuradio@gnu.org
 https://lists.gnu.org/mailman/listinfo/discuss-gnuradio




-- 
Manu T S
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] pktno ??!!

2013-04-02 Thread manjusha
Hi Manu,

I understand what you said..Also,as you said i had that bit of code in
make_packet function under packet_utils.py..

I am unsure where that suitable position could be to place a bit of code
which displays the packet number.

Also,i tried to run the GRC file and noticed that the control is not going
to send_pkt in pkt.py.That means it is sending the packets from a different
place.I need to find what function is being used to send the packet when run
through GRC.

Please correct me if i am wrong.

Thanks.



-
Manjusha
--
View this message in context: 
http://gnuradio.4.n7.nabble.com/pktno-tp40416p40507.html
Sent from the GnuRadio mailing list archive at Nabble.com.

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] pktno ??!!

2013-04-01 Thread manjusha
i get what you meant now..will give a try and let you know about it..

thanks.



-
Manjusha
--
View this message in context: 
http://gnuradio.4.n7.nabble.com/pktno-tp40416p40480.html
Sent from the GnuRadio mailing list archive at Nabble.com.

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] pktno ??!!

2013-04-01 Thread manjusha
Hi,

I put the following code in packet_utils.py

n=0
while len(pkt)!= :
 print make_packet: len(pkt) =,len(payload)
# n=n+1
 print pktno,n
 n=n+1
what it did is ,it kept incrementing until i stop it.Although i connect the
usrp to the computer or not,it keeps incrementing.
How can we know the correct number of packets tranmitted from this.The
packet numbers i get are in any way right??!!

Thanks..



-
Manjusha
--
View this message in context: 
http://gnuradio.4.n7.nabble.com/pktno-tp40416p40483.html
Sent from the GnuRadio mailing list archive at Nabble.com.

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] pktno ??!!

2013-03-31 Thread Manu T S
I suppose you can do something similar to this

n = 0
data = file.read(pkt_size)
while data != :
make payload
send payload
n += 1

print n


On Fri, Mar 29, 2013 at 11:29 PM, manjusha yandamuri.ma...@gmail.comwrote:

 is there no way to do it??!!any other ideas on how can it be implemented?!



 -
 Manjusha
 --
 View this message in context:
 http://gnuradio.4.n7.nabble.com/pktno-tp40416p40426.html
 Sent from the GnuRadio mailing list archive at Nabble.com.

 ___
 Discuss-gnuradio mailing list
 Discuss-gnuradio@gnu.org
 https://lists.gnu.org/mailman/listinfo/discuss-gnuradio




-- 
Manu T S
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] pktno ??!!

2013-03-31 Thread Manu T S
Sorry, I missed a line.

you should have a data = file.read(pkt_size) inside the while loop as
well.



On Mon, Apr 1, 2013 at 7:53 AM, Manu T S manu.t.s...@gmail.com wrote:

 I suppose you can do something similar to this

 n = 0
 data = file.read(pkt_size)
 while data != :
 make payload
 send payload
 n += 1

 print n


 On Fri, Mar 29, 2013 at 11:29 PM, manjusha yandamuri.ma...@gmail.comwrote:

 is there no way to do it??!!any other ideas on how can it be implemented?!



 -
 Manjusha
 --
 View this message in context:
 http://gnuradio.4.n7.nabble.com/pktno-tp40416p40426.html
 Sent from the GnuRadio mailing list archive at Nabble.com.

 ___
 Discuss-gnuradio mailing list
 Discuss-gnuradio@gnu.org
 https://lists.gnu.org/mailman/listinfo/discuss-gnuradio




 --
 Manu T S




-- 
Manu T S
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] pktno ??!!

2013-03-29 Thread manjusha
Hi Nathan,

Thanks for your reply.I am not trying to find the pktno from benchmark_tx.py
since i already tried doing that and it worked successfully.

I have a file that i transmit using file source.Everything goes fine but i
want to see the number of packets that i have been used to transmit my data.

Thanks..



-
Manjusha
--
View this message in context: 
http://gnuradio.4.n7.nabble.com/pktno-tp40416p40419.html
Sent from the GnuRadio mailing list archive at Nabble.com.

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio