Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hardbyte/python-can
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: rliebscher/python-can
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: develop
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 5 commits
  • 3 files changed
  • 3 contributors

Commits on Oct 20, 2020

  1. Add function to list hwids of available IXXAT devices

    To use multiple IXXAT devices at same time you have to know their hwids beforehand.
    If it does not matter which device is used, a list of available devices is needed.
    
    A potential use case is simulating both ends of a CAN bus with another device in between, so it does not matter which device is sender or receiver.
    
    Usage is as easy as:
    from can.interfaces.ixxat import get_ixxat_hwids
    for hwid in get_ixxat_hwids():
        print("Found IXXAT with hardware id '%s'." % hwid)
    René Liebscher committed Oct 20, 2020
    Configuration menu
    Copy the full SHA
    fc09c9a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cffe233 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2020

  1. Update ixxat.rst

    Document usage of get_ixxat_hwids()
    René Liebscher committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    735ced4 View commit details
    Browse the repository at this point in the history
  2. Update ixxat.rst

    René Liebscher committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    428c820 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2020

  1. Configuration menu
    Copy the full SHA
    0d57e73 View commit details
    Browse the repository at this point in the history
Loading