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: nRF24/RF24
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: nRF24/RF24
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: esp-idf
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 12 commits
  • 27 files changed
  • 2 contributors

Commits on Nov 27, 2025

  1. Configuration menu
    Copy the full SHA
    2f4ba3f View commit details
    Browse the repository at this point in the history
  2. fixes to begin compiling

    examples_esp/ forthcoming
    2bndy5 committed Nov 27, 2025
    Configuration menu
    Copy the full SHA
    990b3a9 View commit details
    Browse the repository at this point in the history
  3. fix time keeping wrappers

    2bndy5 committed Nov 27, 2025
    Configuration menu
    Copy the full SHA
    1c36d33 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    17de728 View commit details
    Browse the repository at this point in the history
  5. push WIP example

    This is an incomplete example
    2bndy5 committed Nov 27, 2025
    Configuration menu
    Copy the full SHA
    171ba3e View commit details
    Browse the repository at this point in the history
  6. switch to using idf_component.yml

    for RF24 (local path) dependency
    2bndy5 committed Nov 27, 2025
    Configuration menu
    Copy the full SHA
    ebea017 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b5649ff View commit details
    Browse the repository at this point in the history
  8. set queue_size to 1

    2bndy5 committed Nov 27, 2025
    Configuration menu
    Copy the full SHA
    04274ee View commit details
    Browse the repository at this point in the history
  9. delete lock file from remote

    2bndy5 committed Nov 27, 2025
    Configuration menu
    Copy the full SHA
    126bd02 View commit details
    Browse the repository at this point in the history
  10. fix new debug statements

    2bndy5 committed Nov 27, 2025
    Configuration menu
    Copy the full SHA
    db35235 View commit details
    Browse the repository at this point in the history
  11. more WIP changes

    2bndy5 committed Nov 27, 2025
    Configuration menu
    Copy the full SHA
    b354b86 View commit details
    Browse the repository at this point in the history
  12. Fix ESP-IDF support (#1005)

    * Remove TinyUSB code
    * Use USB CDC for ESP32-S2 and USB Serial JTAG for ESP32-S3
    * Add support for adding local PlatformIO overrides
    * Fix SPI pin initialization
      And stop setting properties that are in a "union" with the actual pin numbers.
    * Fix SPI mode
    * Properly initialize device config struct
    * Remove not properly working status register check
      The check did not work properly, since CS is not asserted!
    * Make sure transaction functions are called
      It also worked without it, but if we don't acquire the bus, we will have
      issues when the bus is used by multiple devices and we control the CS line
      manually.
    * Stop using DMA for small transactions
      DMA usually performs worse than no DMA for transactions with just a few dozen
      of bytes, thus we disable it.
    * Reduce queue_size to 1
      No benefit in using a larger queue_size, since we are using blocking/polling
      transactions.
    * Use max_transfer_sz again
    * Remove unnecessary properties
    * Use `extern "C"` for app_main function only
    * Use internal bus configuration in example
    LennartF22 authored and 2bndy5 committed Nov 27, 2025
    Configuration menu
    Copy the full SHA
    4e205ce View commit details
    Browse the repository at this point in the history
Loading