X-Git-Url: https://git.sur5r.net/?p=freertos;a=blobdiff_plain;f=FreeRTOS%2FDemo%2FPIC32MZ_MPLAB%2Fmain_full.c;h=1e9c67f2d8418e7160faf76daf59ef71f395df39;hp=f5a4ad88e686b6d5322e4fa3e3f411c43f7e5c71;hb=61a5601b461eea61201ee14fc20615ddecf8c259;hpb=03e994cd3c20d0c4cb101923e06c4dcd7376b132 diff --git a/FreeRTOS/Demo/PIC32MZ_MPLAB/main_full.c b/FreeRTOS/Demo/PIC32MZ_MPLAB/main_full.c index f5a4ad88e..1e9c67f2d 100644 --- a/FreeRTOS/Demo/PIC32MZ_MPLAB/main_full.c +++ b/FreeRTOS/Demo/PIC32MZ_MPLAB/main_full.c @@ -229,7 +229,7 @@ TimerHandle_t xTimer = NULL; /* A software timer is also used to start the high frequency timer test. This is to ensure the test does not start before the kernel. This time a - one shot software timer is used. */ + one-shot software timer is used. */ xTimer = xTimerCreate( "HighHzTimerSetup", 1, pdFALSE, ( void * ) 0, prvSetupHighFrequencyTimerTest ); if( xTimer != NULL ) { @@ -409,7 +409,7 @@ void vSetupTimerTest( unsigned short usFrequencyHz ); /* Setup the high frequency, high priority, timer test. It is setup in this software timer callback to ensure it does not start before the kernel does. - This is a one shot timer - so the setup routine will only be executed once. */ + This is a one-shot timer - so the setup routine will only be executed once. */ vSetupTimerTest( mainTEST_INTERRUPT_FREQUENCY ); } /*-----------------------------------------------------------*/