We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Just spent ages trying to track down a crash in zephyr master.
Finally found the culprit and it was the idle task being overwritten by a variable i created.
Renaming my variable to idle_data and voila the system is working again.
I got no link errors or warnings.
Name all internal tasks/stacks to something a bit more precise for example idle becomes idle_task
No response
The text was updated successfully, but these errors were encountered:
Hi @joolzg! We appreciate you submitting your first issue for our open-source project. 🌟
Even though I'm a bot, I can assure you that the whole community is genuinely grateful for your time and effort. 🤖💙
Sorry, something went wrong.
Can you provide a bit more details about which variable appears to be global?
idle.c and the idle task.
I added a variable "uint8_t idle[256]" in my code and this is what caused the program to crash.
As i said no warnings when building.
CC @nashif @carlescufi Anything we should do here wrt public vs private naming?
No branches or pull requests
Summary
Just spent ages trying to track down a crash in zephyr master.
Finally found the culprit and it was the idle task being overwritten by a variable i created.
Renaming my variable to idle_data and voila the system is working again.
I got no link errors or warnings.
Describe the solution you'd like
Name all internal tasks/stacks to something a bit more precise for example idle becomes idle_task
Alternatives
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: