/** ****************************************************************************** * @file template.h * @author ECS - MAX MUSTERMANN * @version V1.0.0 * @date 09-Sep-2015 * @brief Muster Modul Treiber * * Beschreibung * Dieses Modul enthält ein Musteraufbau einer Header Datei * * Achtung: * Hinweis1 * Hinweis2 ****************************************************************************** */ #ifndef __BMS_H #define __BMS_H //--- INCLUDEs ----------------------------------------------------------------- //--- GLOBALE TYPE DEFS -------------------------------------------------------- //--- GLOBALE DEFINES ---------------------------------------------------------- //--- GLOBALE VARIABLEN PROTOTYPEN --------------------------------------------- //--- GLOBALE FUNKTIONS PROTOTYPEN --------------------------------------------- /** * @brief BMS Execute * * Beschreibung: * Berechnete die aktullen Schwellwerte anhand der Temperatur und abhängig vom Standalone Wert * Prüft ob LED's oder Asugänge geschaltet werden müssen * * * * @param Keine * * @retval Kein */ void BMS_Exec(void); #endif