Fix broken #warning message in ARM_CMx_MPU/portmacro.h between 10.3.1 and 10.4.0 #171
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
Description
This PR fixes broken #warning message in ARM_CMx_MPU/portmacro.h which was broken between 10.3.1 and 10.4.0.
Before this PR
#warning "~~~. https: /*www.FreeRTOS.org/FreeRTOS-V10.3.x.html" */
After this PR
#warning "~~~. https://www.FreeRTOS.org/FreeRTOS-V10.3.x.html"
The souce code were as follows:
#warning message in 10.4.0
FreeRTOS-Kernel/portable/GCC/ARM_CM3_MPU/portmacro.h
Line 300 in 85768bb
FreeRTOS-Kernel/portable/GCC/ARM_CM4_MPU/portmacro.h
Line 389 in 85768bb
FreeRTOS-Kernel/portable/IAR/ARM_CM4F_MPU/portmacro.h
Line 337 in 85768bb
FreeRTOS-Kernel/portable/RVDS/ARM_CM4_MPU/portmacro.h
Line 402 in 85768bb
#warning message in 10.3.1
FreeRTOS-Kernel/portable/GCC/ARM_CM3_MPU/portmacro.h
Line 298 in 88e3232
FreeRTOS-Kernel/portable/GCC/ARM_CM4_MPU/portmacro.h
Line 298 in 88e3232
FreeRTOS-Kernel/portable/IAR/ARM_CM4F_MPU/portmacro.h
Line 249 in 88e3232
FreeRTOS-Kernel/portable/RVDS/ARM_CM4_MPU/portmacro.h
Line 306 in 88e3232
Test Steps
None (I think that checking by compiling RTOSDemo programs which use these portable layers is better than nothing to do but I don't have such compilers. And I think that checking by review will be enough for this PR.)
Related Issue
[BUG] Uncrustify(?) breaks #warning in ARM_CMx_MPU/portmacro.h #167