mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-17 02:07:48 -04:00
Use CI-CD-Github-Actions for spelling and formatting, add in the bot formatting action, update the CI-CD workflow files. Fix incorrect spelling and formatting on files. (#1083)
* Use new version of CI-CD Actions, checkout@v3 instead of checkout@v2 on all jobs * Use cSpell spell check, and use ubuntu-20.04 for formatting check * Add in bot formatting action * Update freertos_demo.yml and freertos_plus_demo.yml files to increase github log readability * Add in a Qemu demo onto the workflows.
This commit is contained in:
parent
537007d96c
commit
3a2f6646f0
1036 changed files with 134568 additions and 127281 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* FreeRTOS V202212.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
|
@ -159,7 +159,7 @@ void vStartTaskNotifyArrayTask( void )
|
|||
/* Create the task that performs some tests by itself, then loops around
|
||||
* being notified by both a software timer and an interrupt. */
|
||||
xTaskCreate( prvNotifiedTask, /* Function that implements the task. */
|
||||
"ArrayNotifed", /* Text name for the task - for debugging only - not used by the kernel. */
|
||||
"ArrayNotified", /* Text name for the task - for debugging only - not used by the kernel. */
|
||||
notifyNOTIFY_ARRAY_TASK_STACK_SIZE, /* Task's stack size in words, not bytes!. */
|
||||
NULL, /* Task parameter, not used in this case. */
|
||||
notifyTASK_PRIORITY, /* Task priority, 0 is the lowest. */
|
||||
|
@ -917,7 +917,7 @@ static void prvBlockOnTheNotifiedIndexed( void )
|
|||
xTaskNotifyStateClearIndexed( xTaskToNotify, uxIndex );
|
||||
}
|
||||
|
||||
/* Peform the test on each task notification within the array of task
|
||||
/* Perform the test on each task notification within the array of task
|
||||
* notifications. */
|
||||
for( uxIndexToNotify = 0; uxIndexToNotify < configTASK_NOTIFICATION_ARRAY_ENTRIES; uxIndexToNotify++ )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue