mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
- Creates mpm/ subdirectory - First pass at hardware daemon/MPM - New code for LMK04828, AD9371 - spidev integration Contributions by: Martin Braun <martin.braun@ettus.com> Derek Kozel <derek.kozel@ettus.com> Mark Meserve <mark.meserve@ni.com> Andrej Rode <andrej.rode@ettus.com>
22 lines
512 B
Python
Executable file
22 lines
512 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import socket
|
|
import binascii
|
|
|
|
UDP_IP = "0.0.0.0"
|
|
UDP_PORT = 5000
|
|
|
|
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
sock.bind(((UDP_IP, UDP_PORT)))
|
|
|
|
send_sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
|
|
|
|
while True:
|
|
buf = bytearray(4096)
|
|
nbytes, sender = sock.recvfrom_into(buf, 4096)
|
|
print(sender)
|
|
print("number of bytes: {}".format(nbytes))
|
|
print("received bytes: {}".format(binascii.b2a_hex(buf[:nbytes])))
|
|
|
|
send_sock.sendto(buf[:nbytes], sender)
|