Skip to content

Commit 61073fe

Browse files
committed
DEV-425 #time 5m method for is bt control supported
1 parent dcbbe97 commit 61073fe

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

ShimmerDriver/src/main/java/com/shimmerresearch/driver/ShimmerObject.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10830,6 +10830,14 @@ public static boolean isSupportedNewImuSensors(ShimmerVerObject svo, ExpansionBo
1083010830
return false;
1083110831
}
1083210832
}
10833+
10834+
public boolean isSupportedBtBleControl() {
10835+
//TODO check S3/S3R FW version in-which command was introduced?
10836+
BluetoothModuleVersionDetails bluetoothModuleVersionDetails = getBtFwVerDetails();
10837+
return (bluetoothModuleVersionDetails.isBtModuleVersionKnown()
10838+
&& !bluetoothModuleVersionDetails.isBtModuleVersionRn41()
10839+
&& !bluetoothModuleVersionDetails.isBtModuleVersionRn42());
10840+
}
1083310841

1083410842
@Override
1083510843
public LinkedHashMap<String, ChannelDetails> getMapOfAllChannelsForStoringToDB(COMMUNICATION_TYPE commType, CHANNEL_TYPE channelType, boolean isKeyOJCName, boolean showDisabledChannels) {

0 commit comments

Comments
 (0)