source: ecs_cellMon/firmware/inc/led.h@ 9

Last change on this file since 9 was 9, checked in by f.jahn, 3 years ago

Added HAL driver files for IWDG timer (HAL version 1.5.0).

File size: 1.5 KB
Line 
1/**
2 ******************************************************************************
3 * @file led.h
4 * @author ECS - Zed Kazharov
5 * @version V1.0.0
6 * @date 13-Jan-2023
7 * @brief LED Modul Treiber
8 *
9 * Beschreibung
10 *
11 *
12 * Achtung:
13 * Hinweis1
14 * Hinweis2
15 ******************************************************************************
16 */
17#ifndef __LED_H
18#define __LED_H
19
20
21//--- INCLUDEs -----------------------------------------------------------------
22
23//--- GLOBALE TYPE DEFS --------------------------------------------------------
24
25//--- GLOBALE DEFINES ----------------------------------------------------------
26
27//--- GLOBALE VARIABLEN PROTOTYPEN ---------------------------------------------
28
29//--- GLOBALE FUNKTIONS PROTOTYPEN ---------------------------------------------
30/**
31 * @brief LED Modul Init Funktion
32 *
33 * Beschreibung:
34 * Init Funktion
35 *
36 * @param Keine
37 *
38 * @retval Kein
39 */
40void LED_Init(void);
41
42void LED_ErrorOn(void);
43void LED_ErrorOff(void);
44void LED_ErrorToggle(void);
45void LED_ErrorStartBlink(int ontime, int offtime);
46void LED_Test();
47void LED_Exec();
48
49
50void LED_FunctionOn(void);
51void LED_FunctionOff(void);
52void LED_FunctionToggle(void);
53void LED_FunctionStartBlink(int ontime, int offtime);
54void LED_Test();
55void LED_Exec();
56void LED_FunctionSetTimes(int ontime, int offtime);
57
58#endif
Note: See TracBrowser for help on using the repository browser.