rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
led.h
Go to the documentation of this file.
1/************************************************************************************//**
2* \file Demo/ARMCM4_STM32F4_Nucleo_F429ZI_GCC/Boot/led.h
3* \brief LED driver header file.
4* \ingroup Boot_ARMCM4_STM32F4_Nucleo_F429ZI_GCC
5* \internal
6*----------------------------------------------------------------------------------------
7* C O P Y R I G H T
8*----------------------------------------------------------------------------------------
9* Copyright (c) 2021 by Feaser http://www.feaser.com All rights reserved
10*
11*----------------------------------------------------------------------------------------
12* L I C E N S E
13*----------------------------------------------------------------------------------------
14* This file is part of OpenBLT. OpenBLT is free software: you can redistribute it and/or
15* modify it under the terms of the GNU General Public License as published by the Free
16* Software Foundation, either version 3 of the License, or (at your option) any later
17* version.
18*
19* OpenBLT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
20* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
21* PURPOSE. See the GNU General Public License for more details.
22*
23* You have received a copy of the GNU General Public License along with OpenBLT. It
24* should be located in ".\Doc\license.html". If not, contact Feaser to obtain a copy.
25*
26* \endinternal
27****************************************************************************************/
28#ifndef LED_H
29#define LED_H
30
31/****************************************************************************************
32* Function prototypes
33****************************************************************************************/
34void LedBlinkInit(blt_int16u interval_ms);
35void LedBlinkTask(void);
36void LedBlinkExit(void);
37
38
39#endif /* LED_H */
40/*********************************** end of led.h **************************************/
void LedBlinkTask(void)
Task function for blinking the LED as a fixed timer interval.
Definition led.c:70
void LedBlinkInit(blt_int16u interval_ms)
Initializes the LED blink driver.
Definition led.c:58
void LedBlinkExit(void)
Cleans up the LED blink driver. This is intended to be used upon program exit.
Definition led.c:101
unsigned short blt_int16u
Definition types.h:51