Interfacing Microcontroller with MATLAB through serial port

hai kevin

u can use the serial port in 8051 to send data serialy. In matlab there is a command to receive your data serialy. The command is

ser= serial('COM1','BaudRate',9600,'DataBits',8);
fopen(ser)
% while(1)
for i=1:1000
fwrite(ser,4);% asci C
end
fclose(ser);

try this and see.

Thank you... Read Compelte post
Posted by swat on Thu Jan 24 2008, 09:06 pm

Downloads

Comments

CecilMeale
Tue Sep 17 2024, 12:58 am
Jesusnit
Mon Sep 16 2024, 08:56 pm
Dennisnef
Mon Sep 16 2024, 06:40 pm
ScottystIne
Mon Sep 16 2024, 05:56 pm
CedricDrype
Mon Sep 16 2024, 09:40 am
Edwardlaupe
Sun Sep 15 2024, 04:26 pm
Lazrcpg
Sat Sep 14 2024, 09:25 pm
Cazrxef
Sat Sep 14 2024, 03:25 pm