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

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

fw hinzugfügt-->zed

File size: 1.5 KB
Line 
1/**
2  ******************************************************************************
3  * @file    led.h
4  * @author  ECS - Falko Jahn
5  * @version V1.0.0
6  * @date    29-Sep-2021
7  * @brief   Muster Modul Treiber
8  *
9  *          Beschreibung         
10  *          Dieses Modul enthält ein Musteraufbau einer Header Datei
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.