Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Arduino/Razor_AHRS/Output.ino
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@ void output_sensors_binary()

void output_sensors()
{
if (output_mode == OUTPUT__MODE_SENSORS_RAW)
if ((output_mode == OUTPUT__MODE_SENSORS_RAW)||(output_mode == OUTPUT__MODE_ANGLES_SENSORS_RAW))
{
if (output_format == OUTPUT__FORMAT_BINARY)
output_sensors_binary();
else if (output_format == OUTPUT__FORMAT_TEXT)
output_sensors_text('R');
}
else if (output_mode == OUTPUT__MODE_SENSORS_CALIB)
else if ((output_mode == OUTPUT__MODE_SENSORS_CALIB)||(output_mode == OUTPUT__MODE_ANGLES_SENSORS_CALIB))
{
// Apply sensor calibration
compensate_sensor_errors();
Expand Down
Loading