Skip to content

Commit

Permalink
Added the original VID and PID values
Browse files Browse the repository at this point in the history
  • Loading branch information
Gator96100 committed Feb 10, 2021
1 parent abbbbce commit 59ab2f3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pm3
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,15 @@ function get_pm3_list_Windows {
return
fi
done

# Original SERIAL PORTS (COM)
for DEV in $(wmic /locale:ms_409 path Win32_SerialPort Where "PNPDeviceID LIKE '%VID_2D2D&PID_504D%'" Get DeviceID 2>/dev/null | awk -b '/^COM/{print $1}'); do
DEV=${DEV/ */}
PM3LIST+=("$DEV")
if [ ${#PM3LIST[*]} -ge "$N" ]; then
return
fi
done

#white BT dongle SERIAL PORTS (COM)
if $FINDBTDONGLE; then
Expand Down Expand Up @@ -205,6 +214,21 @@ function get_pm3_list_WSL {
fi
fi
done

# Original SERIAL PORTS (COM)
for DEV in $($PSHEXE -command "Get-CimInstance -ClassName Win32_serialport | Where-Object PNPDeviceID -like '*VID_2D2D&PID_504D*' | Select DeviceID" 2>/dev/null | sed -nr 's#^COM([0-9]+)\b#/dev/ttyS\1#p'); do
# ttyS counterpart takes some more time to appear
if [ -e "$DEV" ]; then
PM3LIST+=("$DEV")
if [ ! -w "$DEV" ]; then
echo "[!] Let's give users read/write access to $DEV"
sudo chmod 666 "$DEV"
fi
if [ ${#PM3LIST[*]} -ge "$N" ]; then
return
fi
fi
done

#white BT dongle SERIAL PORTS (COM)
if $FINDBTDONGLE; then
Expand Down

0 comments on commit 59ab2f3

Please sign in to comment.