summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/PIC32MEC14xx_MPLAB/src/Full_Demo/main_full.c
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS/Demo/PIC32MEC14xx_MPLAB/src/Full_Demo/main_full.c')
-rw-r--r--FreeRTOS/Demo/PIC32MEC14xx_MPLAB/src/Full_Demo/main_full.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/FreeRTOS/Demo/PIC32MEC14xx_MPLAB/src/Full_Demo/main_full.c b/FreeRTOS/Demo/PIC32MEC14xx_MPLAB/src/Full_Demo/main_full.c
index 13c7e21e1..7c14a22a2 100644
--- a/FreeRTOS/Demo/PIC32MEC14xx_MPLAB/src/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/PIC32MEC14xx_MPLAB/src/Full_Demo/main_full.c
@@ -188,7 +188,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 )
{
@@ -328,7 +328,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 );
}