Skip to content
Snippets Groups Projects
Commit c217d0d8 authored by Mattias Fält's avatar Mattias Fält
Browse files

Remove test file and remove unnessesary code

parent cb48ab87
No related branches found
No related tags found
No related merge requests found
Pipeline #713 failed
......@@ -79,11 +79,3 @@ function read(bbstream::BeagleBoneStream, cmd)
#TODO Do something with timestamps
return vals[1], timestamps[1]
end
function close(bbstream::BeagleBoneStream)
for dev in bbstream.devices
close(dev)
end
close(bbstream.stream)
return
end
using Sockets, Serialization
#BB side
function startbb()
@async begin
server = listen(2001)
while true
sock = accept(server)
println("accepted")
@async while isopen(sock)
l = deserialize(sock);
println(typeof(l))
#print("Read: ");
println(l);
serialize(sock,l)
end
end
end
end
#Computer side
clientside = connect(ip"192.168.7.2", 2001)
function getminor(t)
println(Int64(t))
t2 = UInt64(floor(UInt64,t/1e9)*1e9)
tsmall = Int32(t-t2)
end
function runcomp(clientside)
@async while isopen(clientside)
l = deserialize(clientside)::Int32;
#print("Read:");
t = time_ns()
#println(t)
t2 = getminor(t)
println((t2-l)/1e6)
end
end
serialize(clientside, getminor(time_ns()))
end # module
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment