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

Allow 4 wire mode on Arduino - set CSN pinMode properly when CE = CSN #356

Closed
wants to merge 4 commits into from

Commits on Apr 16, 2017

  1. Make flush_rx public

    Since flush_rx was removed from startListening, this provides an option
    to flush the RX buffer in use cases where this is required.
    soligen2010 committed Apr 16, 2017
    Configuration menu
    Copy the full SHA
    24378e5 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2017

  1. Configuration menu
    Copy the full SHA
    7372bfa View commit details
    Browse the repository at this point in the history

Commits on May 16, 2017

  1. Configuration menu
    Copy the full SHA
    b7a9772 View commit details
    Browse the repository at this point in the history
  2. Fix for 4 wire mode on arduino

    The original #if  was meaningless becasue it would always eveluate as
    true becasue LITTLEWIRE was already handled in an #elif above.  This
    change allows the Tiny to still be able to use 3 wire mode, but arduinos
    can use a 4 wire mode, which uses CSN but not CE (CE always held high).
    Previously on an arduino if the CE and CSN pins were set to the same
    pin, then CSN pinmode was never set due to this IF
    soligen2010 committed May 16, 2017
    Configuration menu
    Copy the full SHA
    86f9b85 View commit details
    Browse the repository at this point in the history