raspberry pi GPIO connect with simulink

6 次查看(过去 30 天)
I have a dcdc model in simulink, I want to run the loop control algorithm on the raspberry pi. In other words, I need raspberry pi generate a siganl to control the dcdc model. When I try to use following method, I meet a problem "Do not assign the same GPIO number to multiple GPIO blocks in a model. ".so how to work this problem?
can i use different GPIO, and connect them through the wire on the raspberry pi board??
raspberry.jpg

采纳的回答

Andrey Kiselnikov
Hi, you should understand that GPIO is configurable hardware. When you are launching the model on Raspberry it compiles in executable, that is trying to configure the MCU port as input and output simultaneously, that is incorrect.
The proposed method - using different pins connected by a wire is a good solution.
Also, you can evaluate all accessible pins and their functions by command line or script :
%create the system object, sure that no other Matlab functions drive your PI
mypi = raspi;
% watch pin diagram
showPins(mypi)
% clear system object
clear mypi;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Raspberry Pi Hardware 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by