Clear Filters
Clear Filters

send files over serial port

4 views (last 30 days)
Vanessa ricardo
Vanessa ricardo on 22 Aug 2015
Commented: Vanessa ricardo on 22 Aug 2015
i really need send a FILE over serial port.
i use this code and recive the 'hola' in the other pc.
but what i want is send a FILE that is in my pc.
something like..
send (file.evt) %example
please
if someone can help me because this is very important.
serialOne=serial('COM15', 'BaudRate', 9600);
fopen(serialOne);
fprintf (serialOne,'%s','hola');
fclose(serialOne);

Answers (2)

Walter Roberson
Walter Roberson on 22 Aug 2015
Use system() to invoke Kermit-95 or similar software. Or configure PPP on the two systems https://social.technet.microsoft.com/Forums/windows/en-US/5858797c-bc75-4e3f-bca4-d988fadd7581/setting-up-a-ppp-connection-using-communications-cable-between-two-computers?forum=w7itpronetworking and use MATLAB's ftp class or use SCP or similar, perhaps by invoking PuTTY
As it is "very important" you should not attempt to code the copying yourself: there are a number of difficulties that are difficult to address within MATLAB, many of which are only clear to people who grew up hacking in the days of 1200 baud and 9600 baud modems over telephone lines.
  1 Comment
Vanessa ricardo
Vanessa ricardo on 22 Aug 2015
thanks , I will try to use this recommended me .

Sign in to comment.


alican kara
alican kara on 24 Jun 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!