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

Controller Area Network (CAN) Take 3 #212

Closed
wants to merge 8 commits into from

Commits on Oct 12, 2020

  1. can: Frame, Transmitter and Receiver traits

    # Conflicts:
    #	src/lib.rs
    timokroeger committed Oct 12, 2020
    Configuration menu
    Copy the full SHA
    0f323aa View commit details
    Browse the repository at this point in the history
  2. can: Make frame constructors return Result

    As noted by @marcelbuesing @reneherrero invalid identfiers can be passed which
    timokroeger committed Oct 12, 2020
    Configuration menu
    Copy the full SHA
    c5b4816 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    449b801 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    285efaa View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2020

  1. Configuration menu
    Copy the full SHA
    439242e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    95b17a3 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2020

  1. Rename blocking trait methods

    Use `try_read()` / `try_write()` as suggested by @marcelbuesing
    timokroeger committed Nov 15, 2020
    Configuration menu
    Copy the full SHA
    103b41e View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2020

  1. can: Only allow valid Id s to be constructed

    Use newtypes for the enum variants so they cannot be constructed
    anymore. Implement the `From` trait for the variants to access the id
    value as integer.
    timokroeger/embedded-can#7
    timokroeger committed Nov 18, 2020
    Configuration menu
    Copy the full SHA
    7daeaba View commit details
    Browse the repository at this point in the history