mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-30 06:58:33 -04:00
Update the demo directory to use the version 8 type naming conventions.
This commit is contained in:
parent
c6d8892b0d
commit
5a2a8fc319
639 changed files with 3127 additions and 3470 deletions
|
@ -111,8 +111,8 @@
|
|||
#define mainGENERIC_QUEUE_PRIORITY ( tskIDLE_PRIORITY )
|
||||
|
||||
/* The period of the check task both in and out of the presense of an error. */
|
||||
#define mainNO_ERROR_PERIOD ( 5000 / portTICK_RATE_MS )
|
||||
#define mainERROR_PERIOD ( 500 / portTICK_RATE_MS );
|
||||
#define mainNO_ERROR_PERIOD ( 5000 / portTICK_PERIOD_MS )
|
||||
#define mainERROR_PERIOD ( 500 / portTICK_PERIOD_MS );
|
||||
|
||||
/* Constants used by the ComTest task. */
|
||||
#define mainCOM_TEST_BAUD_RATE ( 38400 )
|
||||
|
@ -167,7 +167,7 @@ int main()
|
|||
|
||||
static void prvCheckTask( void * pvParameters )
|
||||
{
|
||||
portTickType xNextWakeTime, xPeriod = mainNO_ERROR_PERIOD;
|
||||
TickType_t xNextWakeTime, xPeriod = mainNO_ERROR_PERIOD;
|
||||
static volatile unsigned long ulErrorCode = 0UL;
|
||||
|
||||
/* Just to remove the compiler warning. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue