|
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 | */
|
|---|
| 40 | void LED_Init(void);
|
|---|
| 41 |
|
|---|
| 42 | void LED_ErrorOn(void);
|
|---|
| 43 | void LED_ErrorOff(void);
|
|---|
| 44 | void LED_ErrorToggle(void);
|
|---|
| 45 | void LED_ErrorStartBlink(int ontime, int offtime);
|
|---|
| 46 | void LED_Test();
|
|---|
| 47 | void LED_Exec();
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 | void LED_FunctionOn(void);
|
|---|
| 51 | void LED_FunctionOff(void);
|
|---|
| 52 | void LED_FunctionToggle(void);
|
|---|
| 53 | void LED_FunctionStartBlink(int ontime, int offtime);
|
|---|
| 54 | void LED_Test();
|
|---|
| 55 | void LED_Exec();
|
|---|
| 56 | void LED_FunctionSetTimes(int ontime, int offtime);
|
|---|
| 57 |
|
|---|
| 58 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.