summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/PIC32MZ_MPLAB/main_full.c
diff options
context:
space:
mode:
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2020-01-16 04:25:29 +0000
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2020-01-16 04:25:29 +0000
commit8381ddf110790d5adceeb630f3a4be13719ef301 (patch)
treee39853d44d4b91c26e5f0620b384b8e1dc74ac78 /FreeRTOS/Demo/PIC32MZ_MPLAB/main_full.c
parent63484f7af7c645c4d517ca7a87d131cb83758792 (diff)
downloadfreertos-8381ddf110790d5adceeb630f3a4be13719ef301.tar.gz
Ensure both one-shot and auto-reload are written consistently with a hyphen in comments.
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@2805 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Demo/PIC32MZ_MPLAB/main_full.c')
-rw-r--r--FreeRTOS/Demo/PIC32MZ_MPLAB/main_full.c4
1 files changed, 2 insertions, 2 deletions
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 );
}
/*-----------------------------------------------------------*/