-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRead_directly_from_Arduino_Matlab.m
70 lines (64 loc) · 2.01 KB
/
Read_directly_from_Arduino_Matlab.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
% Raphael BOICHOT 11/08/2021 Game Boy printer emulator
% This script directly handle the Arduino from Matlab
% for any question : [email protected]
% for end of transmission, simply reboot the Arduino
warning('off')
clear
clc
disp('-----------------------------------------------------------')
disp('|Beware, this code is for Matlab ONLY !!! |')
disp('|Beware, this code is not yet compatible Matlab Mobile !!!|')
disp('|Reboot Arduino to end transmission |')
disp('-----------------------------------------------------------')
rng('shuffle');
list = serialportlist;
valid_port=[];
protocol_failure=1;
for i =1:1:length(list)
disp(['Testing port ',char(list(i)),'...'])
arduinoObj = serialport(char(list(i)),115200,'TimeOut',2);
flush(arduinoObj);
response=readline(arduinoObj);
if ~isempty(response)
if not(isempty(strfind(response,"GAMEBOY PRINTER")))
disp(['Arduino detected on port ',char(list(i))])
valid_port=char(list(i));
beep ()
protocol_failure=0;
end
end
clear arduinoObj
end
if protocol_failure==0
arduinoObj = serialport(valid_port,115200,'TimeOut',3600); %set the Arduino com port here
configureTerminator(arduinoObj,"CR/LF");
flush(arduinoObj);
arduinoObj.UserData = struct("Data",[],"Count",1);
flag=0;
str='Packet Capture V3';
while flag==0
data = readline(arduinoObj);
disp(data)
if not(isempty(strfind(data,str)))
flag=1;
end
end
disp('Entering the capture loop...')
fid=fopen('Entry_file.txt','w');
str='Packet Capture V3';
flag=0;
while flag==0
data = readline(arduinoObj);
disp(data)
fprintf(fid,'%s\r\n',data);
if not(isempty(strfind(data,str)));
flag=1;
end
end
fclose(serial(arduinoObj.Port));
fclose(fid);
disp('Normal termination, printing the images...')
run Main_Decoder.m
else
disp('Arduino not detected')
end