Skip to content
Merged
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
2 changes: 1 addition & 1 deletion ShimmerAPI/ShimmerAPI/ShimmerBluetooth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6632,7 +6632,7 @@ public virtual bool packetTimeStampChecker(int timeStamp2, int timeStamp1)


/// <summary>
/// This sets the Gyroscope on the Shimmer3 to low power mode, where in low power mode the internal sampling rate of the Gyroscope is reduced to 31.25Hz
/// This sets the Gyroscope on the Shimmer3 to low power mode, where in low power mode the internal sampling rate of the Gyroscope is reduced to 31.25Hz. Note for the 3R both the Gyro and LN Accel is set to low power mode. For the 3R low power mode results in a sampling rate of 1.875Hz
/// </summary>
/// <param name="enable">Set to true to enable</param>
public void SetLowPowerGyro(bool enable)
Expand Down
10 changes: 10 additions & 0 deletions ShimmerCapture/ShimmerCapture/UserControlGeneralConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,16 @@ private void ConfigSetup()
checkBoxGyroOnTheFly.Enabled = true;
checkBoxLowPowerAccel.Enabled = true;
checkBoxLowPowerGyro.Enabled = true;
if (PConfiguration.PControlForm.ShimmerDevice.GetShimmerVersion() == (int)ShimmerBluetooth.ShimmerVersion.SHIMMER3)
{
checkBoxLowPowerGyro.Text = "Enable Gyro LP Mode";
} else if (PConfiguration.PControlForm.ShimmerDevice.GetShimmerVersion() == (int)ShimmerBluetooth.ShimmerVersion.SHIMMER3R)
{
checkBoxLowPowerGyro.Text = "Enable LN Accel and Gyro LP Mode";
}



//if (PConfiguration.PControlForm.ShimmerDevice.GetFirmwareVersion() > 0.1 || PConfiguration.PControlForm.ShimmerDevice.GetFirmwareInternal() >= 5) // gsr only supported from BTStream 0.1.5 onwards.
if (PConfiguration.PControlForm.ShimmerDevice.GetFirmwareIdentifier() == ShimmerBluetooth.FW_IDENTIFIER_LOGANDSTREAM
//|| PConfiguration.PControlForm.ShimmerDevice.GetFirmwareVersion() > 0.1 || PConfiguration.PControlForm.ShimmerDevice.GetFirmwareInternal() >= 5) // gsr only supported from BTStream 0.1.5 onwards.
Expand Down
Loading