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

Fix core1 startup #1286

Merged
merged 4 commits into from
Mar 14, 2024
Merged

Fix core1 startup #1286

merged 4 commits into from
Mar 14, 2024

Commits on Mar 13, 2024

  1. Fix core1 startup

    The original code tried to set the stack pointer and call the closure
    _in the same stack frame_. This isn't possible, so the actual stack
    being used was the 8K stack setup by ROM code. If this stack overflowed,
    it could corrupt the ROM function .bss and .data which is why I was
    seeing intermittent panic messages. I still don't understand all the
    failure cases, but I know that now we are using the correct stack
    properly.
    MabezDev committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    860373a View commit details
    Browse the repository at this point in the history
  2. Improve multicore example

    MabezDev committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    8b72c26 View commit details
    Browse the repository at this point in the history
  3. Change log

    MabezDev committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    7d93d2e View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2024

  1. apply fix to esp32

    MabezDev committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    365dcc3 View commit details
    Browse the repository at this point in the history