mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 09:38:32 -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
|
@ -117,8 +117,8 @@
|
|||
#define mainGEN_QUEUE_PRIORITY ( tskIDLE_PRIORITY )
|
||||
|
||||
/* The period between executions of the check task. */
|
||||
#define mainNO_ERROR_TOGGLE_PERIOD ( ( portTickType ) 3000 / portTICK_RATE_MS )
|
||||
#define mainERROR_TOGGLE_PERIOD ( ( portTickType ) 500 / portTICK_RATE_MS )
|
||||
#define mainNO_ERROR_TOGGLE_PERIOD ( ( TickType_t ) 3000 / portTICK_PERIOD_MS )
|
||||
#define mainERROR_TOGGLE_PERIOD ( ( TickType_t ) 500 / portTICK_PERIOD_MS )
|
||||
|
||||
/* The LED toggled by the check task. */
|
||||
#define mainLED_0 P7_bit.no6
|
||||
|
@ -217,7 +217,7 @@ short main( void )
|
|||
|
||||
static void vErrorChecks( void *pvParameters )
|
||||
{
|
||||
portTickType xToggleRate = mainNO_ERROR_TOGGLE_PERIOD, xLastWakeTime;
|
||||
TickType_t xToggleRate = mainNO_ERROR_TOGGLE_PERIOD, xLastWakeTime;
|
||||
|
||||
/* Ensure the parameter was passed in as expected. This is just a test of
|
||||
the kernel port, the parameter is not actually used for anything. The
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue