raspberry pi GPIO connect with simulink

6 views (last 30 days)
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

Accepted Answer

Andrey Kiselnikov
Andrey Kiselnikov on 3 Jul 2019
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;

More Answers (0)

Categories

Find more on Raspberry Pi Hardware in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!