summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/Safer_Interrupts_M33F_NXP_LPC55S69_MCUXpresso/Application/led_demo.c
blob: 34453f3406dc5087b705ff9ddae1a115fc9b49ef (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
/*
 * FreeRTOS V202107.00
 * Copyright (C) 2021 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.
 *
 * http://www.FreeRTOS.org
 * http://aws.amazon.com/freertos
 *
 * 1 tab == 4 spaces!
 */

/* FreeRTOS includes. */
#include "FreeRTOS.h"
#include "task.h"

/* BSP includes. */
#include "board.h"

/* Demo interface include. */
#include "led_demo.h"

/**
 * Represents which LEDs are on or off. pdTRUE is on.
 */
typedef struct LedState
{
    BaseType_t xRed;
    BaseType_t xGreen;
    BaseType_t xBlue;
} LedState_t;

/* The following needs to be placed in the shared memory as it is accessed in
 * the button pressed IRQ handler which is unprivileged. */
static LedState_t xLedState __attribute__( ( section( "user_irq_shared_memory" ) ) );
/*-----------------------------------------------------------*/

/**
 * @brief Turn on RGB Led according to the xLedState.
 */
static void prvTurnOnRgbLed( void );

/**
 * @brief Turn off RGB Led.
 */
static void prvTurnOffRgbLed( void );
/*-----------------------------------------------------------*/

static void prvTurnOnRgbLed( void )
{
    /* Setting the GPIO pin activates the color in RGB LED. */
    if( xLedState.xRed == pdTRUE )
    {
        GPIO_PortClear( GPIO, BOARD_LED_RED_GPIO_PORT, 1u << BOARD_LED_RED_GPIO_PIN );
    }
    if( xLedState.xGreen == pdTRUE )
    {
        GPIO_PortClear( GPIO, BOARD_LED_GREEN_GPIO_PORT, 1u << BOARD_LED_GREEN_GPIO_PIN );
    }
    if( xLedState.xBlue == pdTRUE )
    {
        GPIO_PortClear( GPIO, BOARD_LED_BLUE_GPIO_PORT, 1u << BOARD_LED_BLUE_GPIO_PIN );
    }
}
/*-----------------------------------------------------------*/

static void prvTurnOffRgbLed( void )
{
    /* Setting the pins high turns off the LED. */
    GPIO_PortSet( GPIO, BOARD_LED_RED_GPIO_PORT, 1u << BOARD_LED_RED_GPIO_PIN );
    GPIO_PortSet( GPIO, BOARD_LED_GREEN_GPIO_PORT, 1u << BOARD_LED_GREEN_GPIO_PIN );
    GPIO_PortSet( GPIO, BOARD_LED_BLUE_GPIO_PORT, 1u << BOARD_LED_BLUE_GPIO_PIN );
}
/*-----------------------------------------------------------*/

void vLedDemoTask( void * pvParams )
{
    /* Set the initial LED state. */
    xLedState.xRed = pdTRUE;
    xLedState.xGreen = pdTRUE;
    xLedState.xBlue = pdFALSE;

    /* Silence compiler warnings about unused variables. */
    ( void ) pvParams;

    for( ;; )
    {
        prvTurnOnRgbLed();
        vTaskDelay( pdMS_TO_TICKS( 1000 ) );

        prvTurnOffRgbLed();
        vTaskDelay( pdMS_TO_TICKS( 1000 ) );
    }
}
/*-----------------------------------------------------------*/

void vButtonPressedIRQHandler( uint32_t ulData )
{
    BaseType_t xPreviousRed;

    /* Data is not used. */
    ( void ) ulData;

    /* Shift to the next color. */
    xPreviousRed = xLedState.xRed;
    xLedState.xRed = xLedState.xGreen;
    xLedState.xGreen = xLedState.xBlue;
    xLedState.xBlue = xPreviousRed;
}
/*-----------------------------------------------------------*/