Skip to content

Commit

Permalink
Merge pull request #389 from open-ephys/issue-388
Browse files Browse the repository at this point in the history
Fix ConfigurePolledBno055 operation mode
  • Loading branch information
bparks13 authored Dec 18, 2024
2 parents 8e7f59e + de2003c commit 3c6702b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenEphys.Onix1/ConfigurePolledBno055.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ void ConfigureBno055(DeviceContext device)
i2c.WriteByte(0x3F, 0x00); // Internal oscillator
i2c.WriteByte(0x41, (uint)AxisMap); // Axis map config
i2c.WriteByte(0x42, (uint)AxisSign); // Axis sign
i2c.WriteByte(0x3D, 8); // Operation mode is NOF
i2c.WriteByte(0x3D, 0x0C); // Operation mode is NDOF
}
}

Expand Down

0 comments on commit 3c6702b

Please sign in to comment.