Re: why udp source and sink not work effieciny in gnuradio?
Hi, my guess would be that the file source and UDP sink are much faster than the UDP source and QT GUI Sink. As UDP is "fire and forget", the "transmitter" may be pushing more data over the network than the QT GUI Sink can handle. To test this, you can replace the QT GUI Sink with a NULL sink, which just deletes the data. Or you can add a throttle block after the File Source to reduce the data rate. Best, Fabian Am 04.07.23 um 09:07 schrieb sp: why do UDP source and sink not work efficiently in Gnuradio? I want to use a UDP source and sink in Gnuradio, for a low sample rate of 10k I see that there is too many packet drop. why network tools does not work effectively? can anyone guide you? thanks in advance *more info:* I set payload size 1408 I set send null pkt as true or false all state I had not a good response see the screenshot and log Screenshot from 2023-07-04 10-30-22.png gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet
Re: why udp source and sink not work effieciny in gnuradio?
Exactly this. By choosing UDP, you chose to drop packets when they are not handled in time. So, this is working 100% as expected. Best regards, Marcus On 04.07.23 09:20, Fabian Schwartau wrote: Hi, my guess would be that the file source and UDP sink are much faster than the UDP source and QT GUI Sink. As UDP is "fire and forget", the "transmitter" may be pushing more data over the network than the QT GUI Sink can handle. To test this, you can replace the QT GUI Sink with a NULL sink, which just deletes the data. Or you can add a throttle block after the File Source to reduce the data rate. Best, Fabian Am 04.07.23 um 09:07 schrieb sp: why do UDP source and sink not work efficiently in Gnuradio? I want to use a UDP source and sink in Gnuradio, for a low sample rate of 10k I see that there is too many packet drop. why network tools does not work effectively? can anyone guide you? thanks in advance *more info:* I set payload size 1408 I set send null pkt as true or false all state I had not a good response see the screenshot and log Screenshot from 2023-07-04 10-30-22.png gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet. gr::log :WARN: udp_source0 - Too much data; dropping packet smime.p7s Description: S/MIME Cryptographic Signature
Re: Request for help with Comprehensive RFID module in GNU Radio on Linux
Hi stackprogrammer, pick one, and do a bit more research! The technologies involved are pretty different. Then research based on that! "RFID" is a wide topic, and as you can imagine, getting data out of an animal identification chip with a reader held onto the chip works differently than reading your credit card, and works differently than scanning pallets full of tagged goods when unloading them. Best regards, Marcus On 30.06.23 19:35, sp wrote: Dear GNU Radio community, I am working on a project involving RFID modules in GNU Radio on Linux. I have come across some projects, but they seem to be imperfect. I would appreciate any guidance or suggestions from the community on how to approach this problem. RFID UHF RFID 125Khz RFID 13.56MHZ Thank you in advance for your help. smime.p7s Description: S/MIME Cryptographic Signature