Skip to content

Commit bb34ec5

Browse files
committed
fixed mac ID display on config review. Removed webcam devices also from
config review.
1 parent 65e90a6 commit bb34ec5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1136,7 +1136,8 @@ public int getNumberOfEnabledChannels(COMMUNICATION_TYPE commType){
11361136
public String getMacIdParsed() {
11371137
String macToUse = getMacId();
11381138
if(macToUse.length()>=12) {
1139-
return macToUse.substring(8, 12);
1139+
// return macToUse.substring(8, 12);
1140+
return macToUse.substring(macToUse.length()-4, macToUse.length());
11401141
}
11411142
return "";
11421143
}

0 commit comments

Comments
 (0)