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: elixir-circuits/circuits_spi
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: elixir-circuits/circuits_spi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: maint-v1.x
Choose a head ref
  • 8 commits
  • 4 files changed
  • 3 contributors

Commits on May 13, 2023

  1. Configuration menu
    Copy the full SHA
    2818bfa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    54050b1 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2023

  1. Bump ex_doc from 0.29.4 to 0.30.1

    Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.29.4 to 0.30.1.
    - [Changelog](https://github.com/elixir-lang/ex_doc/blob/main/CHANGELOG.md)
    - [Commits](elixir-lang/ex_doc@v0.29.4...v0.30.1)
    
    ---
    updated-dependencies:
    - dependency-name: ex_doc
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and fhunleth committed Jul 9, 2023
    Configuration menu
    Copy the full SHA
    e9e3865 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2023

  1. Bump dependencies to latest

    fhunleth committed Jul 24, 2023
    Configuration menu
    Copy the full SHA
    8171488 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2023

  1. Bump ex_doc from 0.30.3 to 0.30.6

    Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.30.3 to 0.30.6.
    - [Changelog](https://github.com/elixir-lang/ex_doc/blob/main/CHANGELOG.md)
    - [Commits](elixir-lang/ex_doc@v0.30.3...v0.30.6)
    
    ---
    updated-dependencies:
    - dependency-name: ex_doc
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and fhunleth committed Aug 25, 2023
    Configuration menu
    Copy the full SHA
    0763e0d View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2023

  1. Defer loading the NIF until opening a SPI bus

    This change moves the NIF load from the time at which the module is
    loaded to the time when SPI actually is used.
    
    The primary motivation for doing this is to defer native code crashes
    from happening at load time to the time of first use. Load time is
    harder to debug and sometimes its not clear which NIF caused the crash.
    
    The calls to `apply` get around some complexity with ignoring Dialyzer
    warnings. Dialyzer can't figure out that the recursive looking call
    actually invokes the NIF code.
    fhunleth committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    80c3cc4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1acfdf0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e656c93 View commit details
    Browse the repository at this point in the history
Loading