Hi Rob, On 01/04/22 16:27, Rob Kossler wrote: > Thanks Cédric, > Yes, the CPU is at 100%. I am unfortunately not fluent in python and so I'm > confused about your suggested non-encrypted transfer. What would I run on > the N310 and what on the host in order to transfer the file?
On N310, you run "python -m http.server" [1]. It should printout that it is listening on any interface (0.0.0.0), on port 8000 (to use another port: "python -m http.server <port>"). On the PC, you can open a web browser, go to http://<N310-IP>:8000, and should get an index of the directory where the python server has been started. wget seems to be a good candidate (e.g. [2]) if you need some automation for downloading lots of files. Please note that the connection is unencrypted and is available to any device that can communicate with the N310. [1] https://docs.python.org/3/library/http.server.html [2] https://apple.stackexchange.com/a/100573 Regards -- Cédric Hannotier _______________________________________________ USRP-users mailing list -- [email protected] To unsubscribe send an email to [email protected]
