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

UART over IR LEDs #55

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft

UART over IR LEDs #55

wants to merge 3 commits into from

Commits on Jun 11, 2021

  1. driver bugfix

    vanilla sc16is7xx driver has a bug where it registers the gpiochip _before_ setting up data needed by the gpio functions themselves
    usually this doesn't cause issues because everything will be set up properly by the time the driver finishes loading, but if there's a child gpio hog node present it'll try to add it and immediately access uninitialized memory, leading to a kernel panic
    
    this should also be fixed in mainline
    Wolfvak committed Jun 11, 2021
    Configuration menu
    Copy the full SHA
    fb13053 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    157fea8 View commit details
    Browse the repository at this point in the history
  3. ir transceiver is now working on pure uart mode

    eventually a better driver will need to be written to handle the PWDOWN pin during low power states
    thanks to @al3x10m for all the testing and help
    Wolfvak committed Jun 11, 2021
    Configuration menu
    Copy the full SHA
    91c3424 View commit details
    Browse the repository at this point in the history