Simulink S-Function MPU6050

조회 수: 7 (최근 30일)
Philip Harris
Philip Harris 2019년 1월 20일
편집: Adib Ahmadi 2019년 8월 8일
I've managed to follow the above guide to integrate the MPU6050 into a system for my Arduino Mega but I can't seem to port it to work with my Uno and I'm a bit lost on why.
I have amended the target hardware and upon compiling for the Uno it throws the following error.
mpu6050_sfcn_wrapper.o ../mpu6050_sfcn_wrapper.cpp
../mpu6050_sfcn_wrapper.cpp: In function 'void mpu6050_sfcn_Outputs_wrapper(real_T*, real_T*, real_T*, const real_T*)':
../mpu6050_sfcn_wrapper.cpp:191:9: error: 'Serial2' was not declared in this scope
Serial2.print("ypr\t");
No problem, revert any mention of Serial2 to Serial and it will now compile for the Uno but I can't view the data in a Scope like I can with the Mega.

답변 (3개)

Adib Ahmadi
Adib Ahmadi 2019년 8월 8일
편집: Adib Ahmadi 2019년 8월 8일
i have put all the code and whole files folder here : multiple mpu6050 with s function

mouad boumediene
mouad boumediene 2019년 6월 18일
external mode does not work with arduino uno

Arun Kumar
Arun Kumar 2019년 6월 27일
편집: Arun Kumar 2019년 6월 27일
Hi Philip Harris,
Simulink external mode uses arduino Serial port 0 to communicate with the target.
In the example, the target is Arduino Mega which has more than one serial port. Serial port 0 is used to communicate with simulink while Serial Port 1 is used to print the logs. But in case of Arduino Uno, there is only one serial port. Changing the Serial Port 2 to Serial Port has no issues on Arduino side, the code will compile and run properly. But, on simulink side, Simulink will receive your debug logs along with external mode communication which might result in some unexpected behaviour.
My recommendation is to comment all lines that use Serial Port 2.
-Arun

카테고리

Help CenterFile Exchange에서 Modeling에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by