Fix github batch addition

This commit is contained in:
Kody Stribrny 2025-01-28 07:42:33 -08:00
parent f9c020eaeb
commit 1f59ce71b1

View file

@ -121,9 +121,8 @@ MISRA C-2012 Rule 14.3: Controlling expressions shall not be invariant.
_Ref 14.3_ _Ref 14.3_
- The `configMAX_TASK_NAME_LEN` and `taskRESERVED_TASK_NAME_LENGTH` are - The `configMAX_TASK_NAME_LEN` and `taskRESERVED_TASK_NAME_LENGTH` are
evaluated to constants at compile time and may vary based on the build configuration. evaluated to constants at compile time and may vary based on the build
constant at compile time however can vary depending on build configuration. configuration.
This condition takes into account the build configuration of the system.
#### Rule 18.1 #### Rule 18.1
@ -134,8 +133,6 @@ _Ref 18.1_
- Array access remains within bounds since either the null terminator in - Array access remains within bounds since either the null terminator in
the IDLE task name will break the loop, or the loop will break normally the IDLE task name will break the loop, or the loop will break normally
if the array size is smaller than the IDLE task name length. if the array size is smaller than the IDLE task name length.
of the IDLE task name results in breaking from the loop. Alternatively, if
the size is smaller than the IDLE task name length, the loop will exit normally.
#### Rule 21.6 #### Rule 21.6