We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SerialPort Version: 5.0.0
NodeJS Version: 7.10.1
Operating System and Hardware Platform: Linux Ubuntu 17.04 64 bit
Have you checked the right version of the api docs?: yes
Are you having trouble installing and you checked the Installation Special Cases docs? no
Are you using Electron and have you checked the Electron Docs?:no
The SerialPort.list port object no longer contains the productID of the usb device
Plug in an arduino or FTDI or Michrochip serial device Run the following code:
SerialPort.list(function (err, ports) { log.debug(ports); });
Output before commit 4fc1404 { manufacturer: 'Microchip Technology Inc.', serialNumber: undefined, pnpId: 'usb-Microchip_Technology_Inc._Simple_CDC_Device_Demo-if00', locationId: undefined, vendorId: '04d8', productId: 'f793', comName: '/dev/ttyACM0' }
Output after commit
{ manufacturer: 'Microchip Technology Inc.', serialNumber: undefined, pnpId: 'usb-Microchip_Technology_Inc._Simple_CDC_Device_Demo-if00', locationId: undefined, vendorId: '04d8', productId: 'Simple CDC Device Demo', comName: '/dev/ttyACM0' }
The text was updated successfully, but these errors were encountered:
Change back productID to be a number
ed11282
Fixes serialport#1278 The productID should be a number not a description string
fix(linux): The productID should be a number not a description string (…
bf46f68
…#1279) fix: #1278
2854769
No branches or pull requests
SerialPort Version: 5.0.0
NodeJS Version: 7.10.1
Operating System and Hardware Platform: Linux Ubuntu 17.04 64 bit
Have you checked the right version of the api docs?: yes
Are you having trouble installing and you checked the Installation Special Cases docs? no
Are you using Electron and have you checked the Electron Docs?:no
Summary of Problem
The SerialPort.list port object no longer contains the productID of the usb device
Steps and Code to Reproduce the Issue
Plug in an arduino or FTDI or Michrochip serial device
Run the following code:
Output before commit 4fc1404
{ manufacturer: 'Microchip Technology Inc.',
serialNumber: undefined,
pnpId: 'usb-Microchip_Technology_Inc._Simple_CDC_Device_Demo-if00',
locationId: undefined,
vendorId: '04d8',
productId: 'f793',
comName: '/dev/ttyACM0' }
Output after commit
{ manufacturer: 'Microchip Technology Inc.',
serialNumber: undefined,
pnpId: 'usb-Microchip_Technology_Inc._Simple_CDC_Device_Demo-if00',
locationId: undefined,
vendorId: '04d8',
productId: 'Simple CDC Device Demo',
comName: '/dev/ttyACM0' }
The text was updated successfully, but these errors were encountered: