Skip to content
New issue

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

Use libusb_get_device_address(), not libusb_get_port_number() #1819

Merged
merged 6 commits into from
Jan 22, 2023

Commits on Jan 17, 2023

  1. Use libusb_get_device_address(), not libusb_get_port_number()

    In USB device enumeration, when setting curDevice->Device, use libusb_get_device_address(), not libusb_get_port_number().
    
    While there, rename bus to bus_num to avoid ambiguity.
    
    When printf()ing devnum (a size_t), use %zd, which is POSIX, not PRIuSIZE, which is not.
    efuss committed Jan 17, 2023
    Configuration menu
    Copy the full SHA
    f0eee40 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2023

  1. Configuration menu
    Copy the full SHA
    0b922c4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1fd0b46 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a67f643 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bbb0777 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a4e99da View commit details
    Browse the repository at this point in the history