/** ****************************************************************************** * @file bms.h * @author ECS - Zed Kazharov * @version V1.0.0 * @date 05-Jan-2023 * @brief BMS Modul Treiber * * Beschreibung * * * 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