-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[BUG] Inconsistent parameter name #1165
Comments
Hey, this does seem like a bug. Feel free to open a PR if you would like, else we can do so. |
Went ahead and made the fix - #1166 |
Hi @swaldhoer |
Closing since the issue is fixed. |
No, it's only partially fixed, see https://github.com/search?q=repo%3AFreeRTOS%2FFreeRTOS-Kernel%20uxAutoReload&type=code |
Thanks for the search! I see I forgot at least a couple which need to be fixed. |
Yes, but for the remaining |
Agreed! I'm going to revert my commit, figure out how we got the mismatched types across the mpu wrapper v1 and v2, and then will come up with a fix commit. |
The type mismatches were straightforward so I've created a PR to apply the type mismatch fix - #1181 |
All problems should be fixed now - let me know if you still find any other issues. |
Thanks, will have a look, when updating to the latest version, but I think it should be good! Small question: The changelog has not been updated on purpose? Is it only updated on new releases or how does it work? |
I took a look at the history.txt log but it only seems to document changes between releases. We will mention this fix between as part of our next release. |
Describe the bug
In FreeRTOS version V10.5.0 a parameter in function
MPU_vTimerSetReloadMode
was changed fromUBaseType_t uxAutoReload
toBaseType_t xAutoReload
:FreeRTOS-Kernel/History.txt
Lines 414 to 417 in 7215c89
But there are still old namings used which not all compilers and coding standards are happy about.
Target
Host
To Reproduce
See https://github.com/search?q=repo%3AFreeRTOS%2FFreeRTOS-Kernel%20uxAutoReload%20&type=code
Expected behavior
Parameter name is in all declarations and definitions
xAutoReload
.The text was updated successfully, but these errors were encountered: