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: Maximvdw/arduino-esp32
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Maximvdw/arduino-esp32
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: stickbreaker-patch-2
Choose a head ref
  • 4 commits
  • 3 files changed
  • 2 contributors

Commits on Dec 10, 2019

  1. Fix Semaphore Handle leak

    code was allocating a semaphore handle on every write access.
    stickbreaker authored Dec 10, 2019
    Configuration menu
    Copy the full SHA
    e08429f View commit details
    Browse the repository at this point in the history
  2. Fix memory leak caused by multiple calls to addApbChangeCallback()

    Every time frequency was changed, an additional cpu frequency change callback was added. Code now adds ONE callback and uses a static variable to denote active channels requiring timer reconfig on base frequency change.
    stickbreaker authored Dec 10, 2019
    Configuration menu
    Copy the full SHA
    bac5867 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2019

  1. Fix APBChangeCallback logic in LedC.

    Change apbChangeCallback to double link list, roll cpu freq change newest->oldest then Oldest->Newest to minimize UART disruption.
    Fix duplicate addApbChangeCallback detection.
    Fix UART MUTEX deadlock when log_x calls occuring from apbCallbacks
    stickbreaker committed Dec 12, 2019
    Configuration menu
    Copy the full SHA
    e705fce View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2019

  1. correct error message

    Fix incorrect error message. If timer clock source was REF_CLK, (slow speed 8mhz) ApbClockChange callback was incorrectly reporting that timer channel was inactive.
    stickbreaker authored Dec 16, 2019
    Configuration menu
    Copy the full SHA
    6026744 View commit details
    Browse the repository at this point in the history
Loading