Comparing esp8266:master...rsaxvc:master · esp8266/Arduino · GitHub
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: esp8266/Arduino
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: rsaxvc/Arduino
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jan 6, 2020

  1. SPI: Add async write functions

    Add new SPI write functions suffixed with
    underscore that are allowed to return
    before SPI data is fully written.
    
    Internally, this allows the CPU to run up to
    one SPI FIFO ahead of the SPI transmitter.
    
    A benchmark: Updating a string of 30 APA102
    LEDs on 160MHz ESP8266:
        235us - FastGPIO bitbang
    	 97us - SPI.write32() per pixel
    	 79us - SPI.write32_() per pixel
    
    This is particularly useful for complex pixel
    calculations. Approximately 1.5 microseconds
    of calculations per pixel can now be pipelined
    in parallel with the previous pixel transmission.
    rsaxvc committed Jan 6, 2020
    Configuration menu
    Copy the full SHA
    e0b8bc6 View commit details
    Browse the repository at this point in the history
Loading