summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/Common/Full/comtest.c
blob: 24f07a1f1cf2b6965b8601b9fb068403f82d16d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/*
 * FreeRTOS V202104.00
 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates.  All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * https://www.FreeRTOS.org
 * https://github.com/FreeRTOS
 *
 */

/**
 * Creates two tasks that operate on an interrupt driven serial port.  A loopback
 * connector should be used so that everything that is transmitted is also received.
 * The serial port does not use any flow control.  On a standard 9way 'D' connector
 * pins two and three should be connected together.
 *
 * The first task repeatedly sends a string to a queue, character at a time.  The
 * serial port interrupt will empty the queue and transmit the characters.  The
 * task blocks for a pseudo random period before resending the string.
 *
 * The second task blocks on a queue waiting for a character to be received.
 * Characters received by the serial port interrupt routine are posted onto the
 * queue - unblocking the task making it ready to execute.  If this is then the
 * highest priority task ready to run it will run immediately - with a context
 * switch occurring at the end of the interrupt service routine.  The task
 * receiving characters is spawned with a higher priority than the task
 * transmitting the characters.
 *
 * With the loop back connector in place, one task will transmit a string and the
 * other will immediately receive it.  The receiving task knows the string it
 * expects to receive so can detect an error.
 *
 * This also creates a third task.  This is used to test semaphore usage from an
 * ISR and does nothing interesting.
 *
 * \page ComTestC comtest.c
 * \ingroup DemoFiles
 * <HR>
 */

/*
 * Changes from V1.00:
 *
 + The priority of the Rx task has been lowered.  Received characters are
 +    now processed (read from the queue) at the idle priority, allowing low
 +    priority tasks to run evenly at times of a high communications overhead.
 +
 + Changes from V1.01:
 +
 + The Tx task now waits a pseudo random time between transmissions.
 +    Previously a fixed period was used but this was not such a good test as
 +    interrupts fired at regular intervals.
 +
 + Changes From V1.2.0:
 +
 + Use vSerialPutString() instead of single character puts.
 + Only stop the check variable incrementing after two consecutive errors.
 +
 + Changed from V1.2.5
 +
 + Made the Rx task 2 priorities higher than the Tx task.  Previously it was
 +    only 1.  This is done to tie in better with the other demo application
 +    tasks.
 +
 + Changes from V2.0.0
 +
 + Delay periods are now specified using variables and constants of
 +    TickType_t rather than unsigned long.
 + Slight modification to task priorities.
 +
 */


/* Scheduler include files. */
#include <stdlib.h>
#include <string.h>
#include "FreeRTOS.h"
#include "task.h"

/* Demo program include files. */
#include "serial.h"
#include "comtest.h"
#include "print.h"

/* The Tx task will transmit the sequence of characters at a pseudo random
 * interval.  This is the maximum and minimum block time between sends. */
#define comTX_MAX_BLOCK_TIME         ( ( TickType_t ) 0x15e )
#define comTX_MIN_BLOCK_TIME         ( ( TickType_t ) 0xc8 )

#define comMAX_CONSECUTIVE_ERRORS    ( 2 )

#define comSTACK_SIZE                ( ( unsigned short ) 256 )

#define comRX_RELATIVE_PRIORITY      ( 1 )

/* Handle to the com port used by both tasks. */
static xComPortHandle xPort;

/* The transmit function as described at the top of the file. */
static void vComTxTask( void * pvParameters );

/* The receive function as described at the top of the file. */
static void vComRxTask( void * pvParameters );

/* The semaphore test function as described at the top of the file. */
static void vSemTestTask( void * pvParameters );

/* The string that is repeatedly transmitted. */
const char * const pcMessageToExchange = "Send this message over and over again to check communications interrupts. "
                                         "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\r\n";

/* Variables that are incremented on each cycle of each task.  These are used to
 * check that both tasks are still executing. */
volatile short sTxCount = 0, sRxCount = 0, sSemCount = 0;

/* The handle to the semaphore test task. */
static TaskHandle_t xSemTestTaskHandle = NULL;

/*-----------------------------------------------------------*/

void vStartComTestTasks( unsigned portBASE_TYPE uxPriority,
                         eCOMPort ePort,
                         eBaud eBaudRate )
{
    const unsigned portBASE_TYPE uxBufferLength = 255;

    /* Initialise the com port then spawn both tasks. */
    xPort = xSerialPortInit( ePort, eBaudRate, serNO_PARITY, serBITS_8, serSTOP_1, uxBufferLength );
    xTaskCreate( vComTxTask, "COMTx", comSTACK_SIZE, NULL, uxPriority, NULL );
    xTaskCreate( vComRxTask, "COMRx", comSTACK_SIZE, NULL, uxPriority + comRX_RELATIVE_PRIORITY, NULL );
    xTaskCreate( vSemTestTask, "ISRSem", comSTACK_SIZE, NULL, tskIDLE_PRIORITY, &xSemTestTaskHandle );
}
/*-----------------------------------------------------------*/

static void vComTxTask( void * pvParameters )
{
    const char * const pcTaskStartMsg = "COM Tx task started.\r\n";
    TickType_t xTimeToWait;

    /* Stop warnings. */
    ( void ) pvParameters;

    /* Queue a message for printing to say the task has started. */
    vPrintDisplayMessage( &pcTaskStartMsg );

    for( ; ; )
    {
        /* Send the string to the serial port. */
        vSerialPutString( xPort, pcMessageToExchange, strlen( pcMessageToExchange ) );

        /* We have posted all the characters in the string - increment the variable
         * used to check that this task is still running, then wait before re-sending
         * the string. */
        sTxCount++;

        xTimeToWait = xTaskGetTickCount();

        /* Make sure we don't wait too long... */
        xTimeToWait %= comTX_MAX_BLOCK_TIME;

        /* ...but we do want to wait. */
        if( xTimeToWait < comTX_MIN_BLOCK_TIME )
        {
            xTimeToWait = comTX_MIN_BLOCK_TIME;
        }

        vTaskDelay( xTimeToWait );
    }
} /*lint !e715 !e818 pvParameters is required for a task function even if it is not referenced. */
/*-----------------------------------------------------------*/

static void vComRxTask( void * pvParameters )
{
    const char * const pcTaskStartMsg = "COM Rx task started.\r\n";
    const char * const pcTaskErrorMsg = "COM read error\r\n";
    const char * const pcTaskRestartMsg = "COM resynced\r\n";
    const char * const pcTaskTimeoutMsg = "COM Rx timed out\r\n";
    const TickType_t xBlockTime = ( TickType_t ) 0xffff / portTICK_PERIOD_MS;
    const char * pcExpectedChar;
    portBASE_TYPE xGotChar;
    char cRxedChar;
    short sResyncRequired, sConsecutiveErrors, sLatchedError;

    /* Stop warnings. */
    ( void ) pvParameters;

    /* Queue a message for printing to say the task has started. */
    vPrintDisplayMessage( &pcTaskStartMsg );

    /* The first expected character is the first character in the string. */
    pcExpectedChar = pcMessageToExchange;
    sResyncRequired = pdFALSE;
    sConsecutiveErrors = 0;
    sLatchedError = pdFALSE;

    for( ; ; )
    {
        /* Receive a message from the com port interrupt routine.  If a message is
         * not yet available the call will block the task. */
        xGotChar = xSerialGetChar( xPort, &cRxedChar, xBlockTime );

        if( xGotChar == pdTRUE )
        {
            if( sResyncRequired == pdTRUE )
            {
                /* We got out of sequence and are waiting for the start of the next
                 * transmission of the string. */
                if( cRxedChar == '\n' )
                {
                    /* This is the end of the message so we can start again - with
                     * the first character in the string being the next thing we expect
                     * to receive. */
                    pcExpectedChar = pcMessageToExchange;
                    sResyncRequired = pdFALSE;

                    /* Queue a message for printing to say that we are going to try
                     * again. */
                    vPrintDisplayMessage( &pcTaskRestartMsg );

                    /* Stop incrementing the check variable, if consecutive errors occur. */
                    sConsecutiveErrors++;

                    if( sConsecutiveErrors >= comMAX_CONSECUTIVE_ERRORS )
                    {
                        sLatchedError = pdTRUE;
                    }
                }
            }
            else
            {
                /* We have received a character, but is it the expected character? */
                if( cRxedChar != *pcExpectedChar )
                {
                    /* This was not the expected character so post a message for
                     * printing to say that an error has occurred.  We will then wait
                     * to resynchronise. */
                    vPrintDisplayMessage( &pcTaskErrorMsg );
                    sResyncRequired = pdTRUE;
                }
                else
                {
                    /* This was the expected character so next time we will expect
                     * the next character in the string.  Wrap back to the beginning
                     * of the string when the null terminator has been reached. */
                    pcExpectedChar++;

                    if( *pcExpectedChar == '\0' )
                    {
                        pcExpectedChar = pcMessageToExchange;

                        /* We have got through the entire string without error. */
                        sConsecutiveErrors = 0;
                    }
                }
            }

            /* Increment the count that is used to check that this task is still
             * running.  This is only done if an error has never occurred. */
            if( sLatchedError == pdFALSE )
            {
                sRxCount++;
            }
        }
        else
        {
            vPrintDisplayMessage( &pcTaskTimeoutMsg );
        }
    }
} /*lint !e715 !e818 pvParameters is required for a task function even if it is not referenced. */
/*-----------------------------------------------------------*/

static void vSemTestTask( void * pvParameters )
{
    const char * const pcTaskStartMsg = "ISR Semaphore test started.\r\n";
    portBASE_TYPE xError = pdFALSE;

    /* Stop warnings. */
    ( void ) pvParameters;

    /* Queue a message for printing to say the task has started. */
    vPrintDisplayMessage( &pcTaskStartMsg );

    for( ; ; )
    {
        if( xSerialWaitForSemaphore( xPort ) )
        {
            if( xError == pdFALSE )
            {
                sSemCount++;
            }
        }
        else
        {
            xError = pdTRUE;
        }
    }
} /*lint !e715 !e830 !e818 pvParameters not used but function prototype must be standard for task function. */
/*-----------------------------------------------------------*/

/* This is called to check that all the created tasks are still running. */
portBASE_TYPE xAreComTestTasksStillRunning( void )
{
    static short sLastTxCount = 0, sLastRxCount = 0, sLastSemCount = 0;
    portBASE_TYPE xReturn;

    /* Not too worried about mutual exclusion on these variables as they are 16
     * bits and we are only reading them.  We also only care to see if they have
     * changed or not. */

    if( ( sTxCount == sLastTxCount ) || ( sRxCount == sLastRxCount ) || ( sSemCount == sLastSemCount ) )
    {
        xReturn = pdFALSE;
    }
    else
    {
        xReturn = pdTRUE;
    }

    sLastTxCount = sTxCount;
    sLastRxCount = sRxCount;
    sLastSemCount = sSemCount;

    return xReturn;
}
/*-----------------------------------------------------------*/

void vComTestUnsuspendTask( void )
{
    /* The task that is suspended on the semaphore will be referenced from the
     * Suspended list as it is blocking indefinitely.  This call just checks that
     * the kernel correctly detects this and does not attempt to unsuspend the
     * task. */
    xTaskResumeFromISR( xSemTestTaskHandle );
}