|
157 | 157 | #endif
|
158 | 158 |
|
159 | 159 | #if ( configNUMBER_OF_CORES > 1 )
|
160 |
| - /* Reserve space for Core ID and null termination */ |
| 160 | + /* Reserve space for Core ID and null termination. */ |
161 | 161 | #if ( configMAX_TASK_NAME_LEN < 2U )
|
162 | 162 | #error Minimum required task name length is 2. Please increase configMAX_TASK_NAME_LEN.
|
163 | 163 | #endif
|
|
166 | 166 | #elif ( configNUMBER_OF_CORES > 9 )
|
167 | 167 | #warning Please increase taskRESERVED_TASK_NAME_LENGTH. 1 character is insufficient to store the core ID.
|
168 | 168 | #else
|
169 |
| - /* Reserve space for null termination */ |
| 169 | + /* Reserve space for null termination. */ |
170 | 170 | #if ( configMAX_TASK_NAME_LEN < 1U )
|
171 | 171 | #error Minimum required task name length is 1. Please increase configMAX_TASK_NAME_LEN.
|
172 | 172 | #endif
|
@@ -3547,12 +3547,12 @@ static BaseType_t prvCreateIdleTasks( void )
|
3547 | 3547 | UBaseType_t xIdleTaskNameIndex;
|
3548 | 3548 |
|
3549 | 3549 | /* MISRA Ref 14.3.1 [Configuration dependent invariant] */
|
3550 |
| - /* More details at: https://github.com/FreeRTOS/FreeRTOS-Kernel/blob/main/MISRA.md#rule-143 */ |
| 3550 | + /* More details at: https://github.com/FreeRTOS/FreeRTOS-Kernel/blob/main/MISRA.md#rule-143. */ |
3551 | 3551 | /* coverity[misra_c_2012_rule_14_3_violation] */
|
3552 | 3552 | for( xIdleTaskNameIndex = 0U; xIdleTaskNameIndex < ( configMAX_TASK_NAME_LEN - taskRESERVED_TASK_NAME_LENGTH ); xIdleTaskNameIndex++ )
|
3553 | 3553 | {
|
3554 | 3554 | /* MISRA Ref 18.1.1 [Configuration dependent bounds checking] */
|
3555 |
| - /* More details at: https://github.com/FreeRTOS/FreeRTOS-Kernel/blob/main/MISRA.md#rule-181 */ |
| 3555 | + /* More details at: https://github.com/FreeRTOS/FreeRTOS-Kernel/blob/main/MISRA.md#rule-181. */ |
3556 | 3556 | /* coverity[misra_c_2012_rule_18_1_violation] */
|
3557 | 3557 | cIdleName[ xIdleTaskNameIndex ] = configIDLE_TASK_NAME[ xIdleTaskNameIndex ];
|
3558 | 3558 |
|
|
0 commit comments