raspberry pi GPIO connect with simulink
조회 수: 2 (최근 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](https://www.mathworks.com/matlabcentral/answers/uploaded_files/227245/image.jpeg)
댓글 수: 0
채택된 답변
Andrey Kiselnikov
2019년 7월 3일
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 Center 및 File Exchange에서 Raspberry Pi Hardware에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!