Skip to content

Commit 0905765

Browse files
authored
fix disp bug (#59)
displaying an empty line with `disp` requires an empty character as input.
1 parent 9118b89 commit 0905765

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vgen_process_simulink_model.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
disp('The current operating system is unsupported for automatically compiling device tree overlays')
178178
end
179179

180-
disp()
180+
disp('')
181181
disp('Upload the following artifacts to S3 for deployment:')
182182

183183
paths = string(mp.modelPath) + filesep + "model.json";
@@ -189,7 +189,7 @@
189189
disp([" " + artifactPath])
190190
end
191191

192-
disp()
192+
disp('')
193193
disp('vgen: Finished.')
194194

195195
% reset fast simulation flag so running the model simulation isn't so slow after generating code.

0 commit comments

Comments
 (0)