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

Upgrade to IDF 5.3.1 #3664

Open
wants to merge 6 commits into
base: dev-esp32
Choose a base branch
from
Open

Commits on Oct 14, 2024

  1. Upgrade IDF to 5.3.1

    jmattsson committed Oct 14, 2024
    Configuration menu
    Copy the full SHA
    d483fd9 View commit details
    Browse the repository at this point in the history
  2. Fixes to make 5.3.1 run without crashing.

    Jade Mattsson committed Oct 14, 2024
    Configuration menu
    Copy the full SHA
    2814b8c View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. Only show startup delay setting if wifi module enabled

    Jade Mattsson committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    7176175 View commit details
    Browse the repository at this point in the history
  2. Fix 2x SPIFFS mounting/formatting related issues.

    - If the initial filesystem mounting fails, then a subsequent file.format()
      does not mount it afterwards, necessitating a node.restart(). In the normal
      case, after file.format() the filesystem is mounted and ready for use.
      We now explicitly remount after a format to gain consistent behaviour.
    
    - If using USB CDC, the auto-format on first boot interferes with USB
      enumeration, resulting in a failed startup. We now avoid doing an
      auto-format if the USB CDC console is enabled. The behaviour is
      configurable/overrideable via Kconfig.
    Jade Mattsson committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    b78477f View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. Address additional deprecation warnings

    Jade Mattsson committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    bee12d0 View commit details
    Browse the repository at this point in the history
  2. Increase console task stack size.

    This allegedly resolves the reboot crashes seen on ESP32-S3 Zero.
    It also removes the peculiar need to explicitly call
    esp_vfs_console_register(), the absence of which previously would
    trigger an assertion failure in xQueueGenericSend on input.
    Jade Mattsson committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    4931b37 View commit details
    Browse the repository at this point in the history