How to convert a data acquisition Matlab script to Simulink?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-13 23:40:35

问题


The Matlab script which I wrote is going to be used as a feedback for my control system. I have downloaded a library done called "Custom Arduino Library for HX711" by Nicholas Giacoboni.

I want to convert a Matlab script which I wrote Matlab script. I have also tested the script by itself and it works.
HX711 is a load cell amplifier ADC converter.

function data = Loadcell()
eml.extrinsic('arduino','addon','read_HX711')

a = arduino('COM5','Mega2560','libraries','ExampleAddon/HX711');
scale = -338000;
while 1
    LoadCell = addon(a, 'ExampleAddon/HX711',{'D6','D5'});
    data = (read_HX711(LoadCell)-7388092)/scale

end
end

the layout of simulink at the moment Simulink function block.

And I run Simulink on Normal mode and simulation stop time at inf it comes up with this error. How do I solve this error and get this working?

Regards,

Allan


回答1:


At a minimum you need to define the size of data at the top of the file. The parser has no idea of what read_HX711 returns and hence cannot allocate memory for data. You probably need to do the same for a and LoadCell.

That is, you need something like,

data = zeros(1,1);
a = zeros(1,1);
LoadCell = zeros(1,1);

at the top of the file.

If that doesn't work, then I would suggest that you put all of your above code into a function in a separate m-file, where that function returns just your data variable. Then in your MATLAB Function block code just have one call to your new function (which will still need to be defined as extrinsic).



来源:https://stackoverflow.com/questions/53000684/how-to-convert-a-data-acquisition-matlab-script-to-simulink

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!