You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After loading the EZ-OpenCR firmware from Synthiam onto OpenCR, I added the following code, but I'm still unable to read the data in ARC. Is there any way to resolve this?
After loading the EZ-OpenCR firmware from Synthiam onto OpenCR, I added the following code, but I'm still unable to read the data in ARC. Is there any way to resolve this?
#define CmdGetIMUAngleData 250
cIMU IMU;
void setup() {
COMMUNICATION_PORT.begin(_BAUD_RATE);
IMU.begin();
}
void loop() {
IMU.update();
UpdateBuffer3();
doEZProtocol();
}
void doEZProtocol() {
if (IsAvail()) {
byte cmd = ReadByte();
}
}
The text was updated successfully, but these errors were encountered: