Index: ecs_cellMon/firmware/Core/Inc/stm32g0xx_hal_conf.h
===================================================================
--- ecs_cellMon/firmware/Core/Inc/stm32g0xx_hal_conf.h	(revision 8)
+++ ecs_cellMon/firmware/Core/Inc/stm32g0xx_hal_conf.h	(revision 9)
@@ -45,5 +45,5 @@
 /* #define HAL_I2C_MODULE_ENABLED   */
 /* #define HAL_I2S_MODULE_ENABLED   */
-/* #define HAL_IWDG_MODULE_ENABLED   */
+#define HAL_IWDG_MODULE_ENABLED
 /* #define HAL_IRDA_MODULE_ENABLED   */
 /* #define HAL_LPTIM_MODULE_ENABLED   */
Index: ecs_cellMon/firmware/Core/Src/main.c
===================================================================
--- ecs_cellMon/firmware/Core/Src/main.c	(revision 8)
+++ ecs_cellMon/firmware/Core/Src/main.c	(revision 9)
@@ -58,4 +58,5 @@
 
 /* Private variables ---------------------------------------------------------*/
+IWDG_HandleTypeDef hiwdg;
 
 /* USER CODE BEGIN PV */
Index: ecs_cellMon/firmware/Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_iwdg.h
===================================================================
--- ecs_cellMon/firmware/Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_iwdg.h	(revision 9)
+++ ecs_cellMon/firmware/Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_iwdg.h	(revision 9)
@@ -0,0 +1,237 @@
+/**
+  ******************************************************************************
+  * @file    stm32g0xx_hal_iwdg.h
+  * @author  MCD Application Team
+  * @brief   Header file of IWDG HAL module.
+  ******************************************************************************
+  * @attention
+  *
+  * Copyright (c) 2018 STMicroelectronics.
+  * All rights reserved.
+  *
+  * This software is licensed under terms that can be found in the LICENSE file
+  * in the root directory of this software component.
+  * If no LICENSE file comes with this software, it is provided AS-IS.
+  *
+  ******************************************************************************
+  */
+
+/* Define to prevent recursive inclusion -------------------------------------*/
+#ifndef STM32G0xx_HAL_IWDG_H
+#define STM32G0xx_HAL_IWDG_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* Includes ------------------------------------------------------------------*/
+#include "stm32g0xx_hal_def.h"
+
+/** @addtogroup STM32G0xx_HAL_Driver
+  * @{
+  */
+
+/** @defgroup IWDG IWDG
+  * @{
+  */
+
+/* Exported types ------------------------------------------------------------*/
+/** @defgroup IWDG_Exported_Types IWDG Exported Types
+  * @{
+  */
+
+/**
+  * @brief  IWDG Init structure definition
+  */
+typedef struct
+{
+  uint32_t Prescaler;  /*!< Select the prescaler of the IWDG.
+                            This parameter can be a value of @ref IWDG_Prescaler */
+
+  uint32_t Reload;     /*!< Specifies the IWDG down-counter reload value.
+                            This parameter must be a number between Min_Data = 0 and Max_Data = 0x0FFF */
+
+  uint32_t Window;     /*!< Specifies the window value to be compared to the down-counter.
+                            This parameter must be a number between Min_Data = 0 and Max_Data = 0x0FFF */
+
+} IWDG_InitTypeDef;
+
+/**
+  * @brief  IWDG Handle Structure definition
+  */
+typedef struct
+{
+  IWDG_TypeDef                 *Instance;  /*!< Register base address    */
+
+  IWDG_InitTypeDef             Init;       /*!< IWDG required parameters */
+} IWDG_HandleTypeDef;
+
+
+/**
+  * @}
+  */
+
+/* Exported constants --------------------------------------------------------*/
+/** @defgroup IWDG_Exported_Constants IWDG Exported Constants
+  * @{
+  */
+
+/** @defgroup IWDG_Prescaler IWDG Prescaler
+  * @{
+  */
+#define IWDG_PRESCALER_4                0x00000000u                                     /*!< IWDG prescaler set to 4   */
+#define IWDG_PRESCALER_8                IWDG_PR_PR_0                                    /*!< IWDG prescaler set to 8   */
+#define IWDG_PRESCALER_16               IWDG_PR_PR_1                                    /*!< IWDG prescaler set to 16  */
+#define IWDG_PRESCALER_32               (IWDG_PR_PR_1 | IWDG_PR_PR_0)                   /*!< IWDG prescaler set to 32  */
+#define IWDG_PRESCALER_64               IWDG_PR_PR_2                                    /*!< IWDG prescaler set to 64  */
+#define IWDG_PRESCALER_128              (IWDG_PR_PR_2 | IWDG_PR_PR_0)                   /*!< IWDG prescaler set to 128 */
+#define IWDG_PRESCALER_256              (IWDG_PR_PR_2 | IWDG_PR_PR_1)                   /*!< IWDG prescaler set to 256 */
+/**
+  * @}
+  */
+
+/** @defgroup IWDG_Window_option IWDG Window option
+  * @{
+  */
+#define IWDG_WINDOW_DISABLE             IWDG_WINR_WIN
+/**
+  * @}
+  */
+
+/**
+  * @}
+  */
+
+/* Exported macros -----------------------------------------------------------*/
+/** @defgroup IWDG_Exported_Macros IWDG Exported Macros
+  * @{
+  */
+
+/**
+  * @brief  Enable the IWDG peripheral.
+  * @param  __HANDLE__  IWDG handle
+  * @retval None
+  */
+#define __HAL_IWDG_START(__HANDLE__)                WRITE_REG((__HANDLE__)->Instance->KR, IWDG_KEY_ENABLE)
+
+/**
+  * @brief  Reload IWDG counter with value defined in the reload register
+  *         (write access to IWDG_PR, IWDG_RLR and IWDG_WINR registers disabled).
+  * @param  __HANDLE__  IWDG handle
+  * @retval None
+  */
+#define __HAL_IWDG_RELOAD_COUNTER(__HANDLE__)       WRITE_REG((__HANDLE__)->Instance->KR, IWDG_KEY_RELOAD)
+
+/**
+  * @}
+  */
+
+/* Exported functions --------------------------------------------------------*/
+/** @defgroup IWDG_Exported_Functions  IWDG Exported Functions
+  * @{
+  */
+
+/** @defgroup IWDG_Exported_Functions_Group1 Initialization and Start functions
+  * @{
+  */
+/* Initialization/Start functions  ********************************************/
+HAL_StatusTypeDef     HAL_IWDG_Init(IWDG_HandleTypeDef *hiwdg);
+/**
+  * @}
+  */
+
+/** @defgroup IWDG_Exported_Functions_Group2 IO operation functions
+  * @{
+  */
+/* I/O operation functions ****************************************************/
+HAL_StatusTypeDef     HAL_IWDG_Refresh(IWDG_HandleTypeDef *hiwdg);
+/**
+  * @}
+  */
+
+/**
+  * @}
+  */
+
+/* Private constants ---------------------------------------------------------*/
+/** @defgroup IWDG_Private_Constants IWDG Private Constants
+  * @{
+  */
+
+/**
+  * @brief  IWDG Key Register BitMask
+  */
+#define IWDG_KEY_RELOAD                 0x0000AAAAu  /*!< IWDG Reload Counter Enable   */
+#define IWDG_KEY_ENABLE                 0x0000CCCCu  /*!< IWDG Peripheral Enable       */
+#define IWDG_KEY_WRITE_ACCESS_ENABLE    0x00005555u  /*!< IWDG KR Write Access Enable  */
+#define IWDG_KEY_WRITE_ACCESS_DISABLE   0x00000000u  /*!< IWDG KR Write Access Disable */
+
+/**
+  * @}
+  */
+
+/* Private macros ------------------------------------------------------------*/
+/** @defgroup IWDG_Private_Macros IWDG Private Macros
+  * @{
+  */
+
+/**
+  * @brief  Enable write access to IWDG_PR, IWDG_RLR and IWDG_WINR registers.
+  * @param  __HANDLE__  IWDG handle
+  * @retval None
+  */
+#define IWDG_ENABLE_WRITE_ACCESS(__HANDLE__)  WRITE_REG((__HANDLE__)->Instance->KR, IWDG_KEY_WRITE_ACCESS_ENABLE)
+
+/**
+  * @brief  Disable write access to IWDG_PR, IWDG_RLR and IWDG_WINR registers.
+  * @param  __HANDLE__  IWDG handle
+  * @retval None
+  */
+#define IWDG_DISABLE_WRITE_ACCESS(__HANDLE__) WRITE_REG((__HANDLE__)->Instance->KR, IWDG_KEY_WRITE_ACCESS_DISABLE)
+
+/**
+  * @brief  Check IWDG prescaler value.
+  * @param  __PRESCALER__  IWDG prescaler value
+  * @retval None
+  */
+#define IS_IWDG_PRESCALER(__PRESCALER__)      (((__PRESCALER__) == IWDG_PRESCALER_4)  || \
+                                               ((__PRESCALER__) == IWDG_PRESCALER_8)  || \
+                                               ((__PRESCALER__) == IWDG_PRESCALER_16) || \
+                                               ((__PRESCALER__) == IWDG_PRESCALER_32) || \
+                                               ((__PRESCALER__) == IWDG_PRESCALER_64) || \
+                                               ((__PRESCALER__) == IWDG_PRESCALER_128)|| \
+                                               ((__PRESCALER__) == IWDG_PRESCALER_256))
+
+/**
+  * @brief  Check IWDG reload value.
+  * @param  __RELOAD__  IWDG reload value
+  * @retval None
+  */
+#define IS_IWDG_RELOAD(__RELOAD__)            ((__RELOAD__) <= IWDG_RLR_RL)
+
+/**
+  * @brief  Check IWDG window value.
+  * @param  __WINDOW__  IWDG window value
+  * @retval None
+  */
+#define IS_IWDG_WINDOW(__WINDOW__)            ((__WINDOW__) <= IWDG_WINR_WIN)
+
+
+/**
+  * @}
+  */
+
+/**
+  * @}
+  */
+
+/**
+  * @}
+  */
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* STM32G0xx_HAL_IWDG_H */
Index: ecs_cellMon/firmware/Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_iwdg.c
===================================================================
--- ecs_cellMon/firmware/Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_iwdg.c	(revision 9)
+++ ecs_cellMon/firmware/Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_iwdg.c	(revision 9)
@@ -0,0 +1,282 @@
+/**
+  ******************************************************************************
+  * @file    stm32g0xx_hal_iwdg.c
+  * @author  MCD Application Team
+  * @brief   IWDG HAL module driver.
+  *          This file provides firmware functions to manage the following
+  *          functionalities of the Independent Watchdog (IWDG) peripheral:
+  *           + Initialization and Start functions
+  *           + IO operation functions
+  *
+  ******************************************************************************
+  * @attention
+  *
+  * Copyright (c) 2018 STMicroelectronics.
+  * All rights reserved.
+  *
+  * This software is licensed under terms that can be found in the LICENSE file
+  * in the root directory of this software component.
+  * If no LICENSE file comes with this software, it is provided AS-IS.
+  *
+  ******************************************************************************
+  @verbatim
+  ==============================================================================
+                    ##### IWDG Generic features #####
+  ==============================================================================
+  [..]
+    (+) The IWDG can be started by either software or hardware (configurable
+        through option byte).
+
+    (+) The IWDG is clocked by the Low-Speed Internal clock (LSI) and thus stays
+        active even if the main clock fails.
+
+    (+) Once the IWDG is started, the LSI is forced ON and both cannot be
+        disabled. The counter starts counting down from the reset value (0xFFF).
+        When it reaches the end of count value (0x000) a reset signal is
+        generated (IWDG reset).
+
+    (+) Whenever the key value 0x0000 AAAA is written in the IWDG_KR register,
+        the IWDG_RLR value is reloaded into the counter and the watchdog reset
+        is prevented.
+
+    (+) The IWDG is implemented in the VDD voltage domain that is still functional
+        in STOP and STANDBY mode (IWDG reset can wake up the CPU from STANDBY).
+        IWDGRST flag in RCC_CSR register can be used to inform when an IWDG
+        reset occurs.
+
+    (+) Debug mode: When the microcontroller enters debug mode (core halted),
+        the IWDG counter either continues to work normally or stops, depending
+        on DBG_IWDG_STOP configuration bit in DBG module, accessible through
+        __HAL_DBGMCU_FREEZE_IWDG() and __HAL_DBGMCU_UNFREEZE_IWDG() macros.
+
+    [..] Min-max timeout value @32KHz (LSI): ~125us / ~32.7s
+         The IWDG timeout may vary due to LSI clock frequency dispersion.
+         STM32G0xx devices provide the capability to measure the LSI clock
+         frequency (LSI clock is internally connected to TIM16 CH1 input capture).
+         The measured value can be used to have an IWDG timeout with an
+         acceptable accuracy.
+
+    [..] Default timeout value (necessary for IWDG_SR status register update):
+         Constant LSI_VALUE is defined based on the nominal LSI clock frequency.
+         This frequency being subject to variations as mentioned above, the
+         default timeout value (defined through constant HAL_IWDG_DEFAULT_TIMEOUT
+         below) may become too short or too long.
+         In such cases, this default timeout value can be tuned by redefining
+         the constant LSI_VALUE at user-application level (based, for instance,
+         on the measured LSI clock frequency as explained above).
+
+                     ##### How to use this driver #####
+  ==============================================================================
+  [..]
+    (#) Use IWDG using HAL_IWDG_Init() function to :
+      (++) Enable instance by writing Start keyword in IWDG_KEY register. LSI
+           clock is forced ON and IWDG counter starts counting down.
+      (++) Enable write access to configuration registers:
+          IWDG_PR, IWDG_RLR and IWDG_WINR.
+      (++) Configure the IWDG prescaler and counter reload value. This reload
+           value will be loaded in the IWDG counter each time the watchdog is
+           reloaded, then the IWDG will start counting down from this value.
+      (++) Depending on window parameter:
+        (+++) If Window Init parameter is same as Window register value,
+             nothing more is done but reload counter value in order to exit
+             function with exact time base.
+        (+++) Else modify Window register. This will automatically reload
+             watchdog counter.
+      (++) Wait for status flags to be reset.
+
+    (#) Then the application program must refresh the IWDG counter at regular
+        intervals during normal operation to prevent an MCU reset, using
+        HAL_IWDG_Refresh() function.
+
+     *** IWDG HAL driver macros list ***
+     ====================================
+     [..]
+       Below the list of most used macros in IWDG HAL driver:
+      (+) __HAL_IWDG_START: Enable the IWDG peripheral
+      (+) __HAL_IWDG_RELOAD_COUNTER: Reloads IWDG counter with value defined in
+          the reload register
+
+  @endverbatim
+  */
+
+/* Includes ------------------------------------------------------------------*/
+#include "stm32g0xx_hal.h"
+
+/** @addtogroup STM32G0xx_HAL_Driver
+  * @{
+  */
+
+#ifdef HAL_IWDG_MODULE_ENABLED
+/** @addtogroup IWDG
+  * @brief IWDG HAL module driver.
+  * @{
+  */
+
+/* Private typedef -----------------------------------------------------------*/
+/* Private define ------------------------------------------------------------*/
+/** @defgroup IWDG_Private_Defines IWDG Private Defines
+  * @{
+  */
+/* Status register needs up to 5 LSI clock periods divided by the clock
+   prescaler to be updated. The number of LSI clock periods is upper-rounded to
+   6 for the timeout value calculation.
+   The timeout value is calculated using the highest prescaler (256) and
+   the LSI_VALUE constant. The value of this constant can be changed by the user
+   to take into account possible LSI clock period variations.
+   The timeout value is multiplied by 1000 to be converted in milliseconds.
+   LSI startup time is also considered here by adding LSI_STARTUP_TIME
+   converted in milliseconds. */
+#define HAL_IWDG_DEFAULT_TIMEOUT        (((6UL * 256UL * 1000UL) / LSI_VALUE) + ((LSI_STARTUP_TIME / 1000UL) + 1UL))
+#define IWDG_KERNEL_UPDATE_FLAGS        (IWDG_SR_WVU | IWDG_SR_RVU | IWDG_SR_PVU)
+/**
+  * @}
+  */
+
+/* Private macro -------------------------------------------------------------*/
+/* Private variables ---------------------------------------------------------*/
+/* Private function prototypes -----------------------------------------------*/
+/* Exported functions --------------------------------------------------------*/
+
+/** @addtogroup IWDG_Exported_Functions
+  * @{
+  */
+
+/** @addtogroup IWDG_Exported_Functions_Group1
+  *  @brief    Initialization and Start functions.
+  *
+@verbatim
+ ===============================================================================
+          ##### Initialization and Start functions #####
+ ===============================================================================
+ [..]  This section provides functions allowing to:
+      (+) Initialize the IWDG according to the specified parameters in the
+          IWDG_InitTypeDef of associated handle.
+      (+) Manage Window option.
+      (+) Once initialization is performed in HAL_IWDG_Init function, Watchdog
+          is reloaded in order to exit function with correct time base.
+
+@endverbatim
+  * @{
+  */
+
+/**
+  * @brief  Initialize the IWDG according to the specified parameters in the
+  *         IWDG_InitTypeDef and start watchdog. Before exiting function,
+  *         watchdog is refreshed in order to have correct time base.
+  * @param  hiwdg  pointer to a IWDG_HandleTypeDef structure that contains
+  *                the configuration information for the specified IWDG module.
+  * @retval HAL status
+  */
+HAL_StatusTypeDef HAL_IWDG_Init(IWDG_HandleTypeDef *hiwdg)
+{
+  uint32_t tickstart;
+
+  /* Check the IWDG handle allocation */
+  if (hiwdg == NULL)
+  {
+    return HAL_ERROR;
+  }
+
+  /* Check the parameters */
+  assert_param(IS_IWDG_ALL_INSTANCE(hiwdg->Instance));
+  assert_param(IS_IWDG_PRESCALER(hiwdg->Init.Prescaler));
+  assert_param(IS_IWDG_RELOAD(hiwdg->Init.Reload));
+  assert_param(IS_IWDG_WINDOW(hiwdg->Init.Window));
+
+  /* Enable IWDG. LSI is turned on automatically */
+  __HAL_IWDG_START(hiwdg);
+
+  /* Enable write access to IWDG_PR, IWDG_RLR and IWDG_WINR registers by writing
+  0x5555 in KR */
+  IWDG_ENABLE_WRITE_ACCESS(hiwdg);
+
+  /* Write to IWDG registers the Prescaler & Reload values to work with */
+  hiwdg->Instance->PR = hiwdg->Init.Prescaler;
+  hiwdg->Instance->RLR = hiwdg->Init.Reload;
+
+  /* Check pending flag, if previous update not done, return timeout */
+  tickstart = HAL_GetTick();
+
+  /* Wait for register to be updated */
+  while ((hiwdg->Instance->SR & IWDG_KERNEL_UPDATE_FLAGS) != 0x00u)
+  {
+    if ((HAL_GetTick() - tickstart) > HAL_IWDG_DEFAULT_TIMEOUT)
+    {
+      if ((hiwdg->Instance->SR & IWDG_KERNEL_UPDATE_FLAGS) != 0x00u)
+      {
+        return HAL_TIMEOUT;
+      }
+    }
+  }
+
+  /* If window parameter is different than current value, modify window
+  register */
+  if (hiwdg->Instance->WINR != hiwdg->Init.Window)
+  {
+    /* Write to IWDG WINR the IWDG_Window value to compare with. In any case,
+    even if window feature is disabled, Watchdog will be reloaded by writing
+    windows register */
+    hiwdg->Instance->WINR = hiwdg->Init.Window;
+  }
+  else
+  {
+    /* Reload IWDG counter with value defined in the reload register */
+    __HAL_IWDG_RELOAD_COUNTER(hiwdg);
+  }
+
+  /* Return function status */
+  return HAL_OK;
+}
+
+
+/**
+  * @}
+  */
+
+
+/** @addtogroup IWDG_Exported_Functions_Group2
+  *  @brief   IO operation functions
+  *
+@verbatim
+ ===============================================================================
+                      ##### IO operation functions #####
+ ===============================================================================
+ [..]  This section provides functions allowing to:
+      (+) Refresh the IWDG.
+
+@endverbatim
+  * @{
+  */
+
+/**
+  * @brief  Refresh the IWDG.
+  * @param  hiwdg  pointer to a IWDG_HandleTypeDef structure that contains
+  *                the configuration information for the specified IWDG module.
+  * @retval HAL status
+  */
+HAL_StatusTypeDef HAL_IWDG_Refresh(IWDG_HandleTypeDef *hiwdg)
+{
+  /* Reload IWDG counter with value defined in the reload register */
+  __HAL_IWDG_RELOAD_COUNTER(hiwdg);
+
+  /* Return function status */
+  return HAL_OK;
+}
+
+
+/**
+  * @}
+  */
+
+/**
+  * @}
+  */
+
+#endif /* HAL_IWDG_MODULE_ENABLED */
+/**
+  * @}
+  */
+
+/**
+  * @}
+  */
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/adc.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/adc.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/adc.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/balancer.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/balancer.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/balancer.d	(revision 9)
@@ -42,4 +42,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/bms.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/bms.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/bms.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/comp.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/comp.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/comp.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/dac.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/dac.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/dac.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/dma.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/dma.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/dma.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/eeprom.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/eeprom.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/eeprom.d	(revision 9)
@@ -40,4 +40,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/gpio.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/gpio.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/gpio.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/led.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/led.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/led.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/main.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/main.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/main.d	(revision 9)
@@ -40,4 +40,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/meas.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/meas.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/meas.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/modbus.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/modbus.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/modbus.d	(revision 9)
@@ -42,4 +42,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/output.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/output.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/output.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_adc.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_adc.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_adc.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_adc_ex.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_adc_ex.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_adc_ex.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_comp.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_comp.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_comp.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_cortex.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_cortex.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_cortex.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dac.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dac.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dac.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dac_ex.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dac_ex.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dac_ex.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dma.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dma.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dma.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dma_ex.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dma_ex.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_dma_ex.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_exti.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_exti.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_exti.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_flash.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_flash.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_flash.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_flash_ex.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_flash_ex.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_flash_ex.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_gpio.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_gpio.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_gpio.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_msp.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_msp.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_msp.d	(revision 9)
@@ -40,4 +40,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_pwr.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_pwr.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_pwr.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_pwr_ex.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_pwr_ex.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_pwr_ex.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_rcc.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_rcc.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_rcc.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_rcc_ex.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_rcc_ex.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_rcc_ex.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_tim.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_tim.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_tim.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_tim_ex.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_tim_ex.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_tim_ex.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_uart.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_uart.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_uart.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_uart_ex.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_uart_ex.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_hal_uart_ex.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_it.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_it.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/stm32g0xx_it.d	(revision 9)
@@ -40,4 +40,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/sysdata.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/sysdata.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/sysdata.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/system_stm32g0xx.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/system_stm32g0xx.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/system_stm32g0xx.d	(revision 9)
@@ -39,4 +39,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/tim.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/tim.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/tim.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/Output/Release/Obj/cellMon/usart.d
===================================================================
--- ecs_cellMon/firmware/Output/Release/Obj/cellMon/usart.d	(revision 8)
+++ ecs_cellMon/firmware/Output/Release/Obj/cellMon/usart.d	(revision 9)
@@ -41,4 +41,5 @@
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_flash_ex.h \
+  D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_iwdg.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr.h \
   D:\projekte\ecs_greenPowerPack\ecs_cellMon\firmware\Drivers\STM32G0xx_HAL_Driver\Inc\stm32g0xx_hal_pwr_ex.h \
Index: ecs_cellMon/firmware/firmware.ioc
===================================================================
--- ecs_cellMon/firmware/firmware.ioc	(revision 8)
+++ ecs_cellMon/firmware/firmware.ioc	(revision 9)
@@ -65,13 +65,14 @@
 Mcu.IP0=ADC1
 Mcu.IP1=COMP1
+Mcu.IP10=USART1
 Mcu.IP2=COMP2
 Mcu.IP3=DAC1
 Mcu.IP4=DMA
-Mcu.IP5=NVIC
-Mcu.IP6=RCC
-Mcu.IP7=SYS
-Mcu.IP8=TIM1
-Mcu.IP9=USART1
-Mcu.IPNb=10
+Mcu.IP5=IWDG
+Mcu.IP6=NVIC
+Mcu.IP7=RCC
+Mcu.IP8=SYS
+Mcu.IP9=TIM1
+Mcu.IPNb=11
 Mcu.Name=STM32G071C(6-8-B)Tx
 Mcu.Package=LQFP48
@@ -92,10 +93,11 @@
 Mcu.Pin21=PB5
 Mcu.Pin22=VP_COMP1_VS_DACOUT1
-Mcu.Pin23=VP_SYS_VS_Systick
-Mcu.Pin24=VP_SYS_VS_DBSignals
-Mcu.Pin25=VP_TIM1_VS_ControllerModeReset
-Mcu.Pin26=VP_TIM1_VS_ClockSourceINT
-Mcu.Pin27=VP_TIM1_VS_NoInput1
-Mcu.Pin28=VP_TIM1_VS_NoInput2
+Mcu.Pin23=VP_IWDG_VS_IWDG
+Mcu.Pin24=VP_SYS_VS_Systick
+Mcu.Pin25=VP_SYS_VS_DBSignals
+Mcu.Pin26=VP_TIM1_VS_ControllerModeReset
+Mcu.Pin27=VP_TIM1_VS_ClockSourceINT
+Mcu.Pin28=VP_TIM1_VS_NoInput1
+Mcu.Pin29=VP_TIM1_VS_NoInput2
 Mcu.Pin3=PA2
 Mcu.Pin4=PA3
@@ -105,5 +107,5 @@
 Mcu.Pin8=PA7
 Mcu.Pin9=PB0
-Mcu.PinsNb=29
+Mcu.PinsNb=30
 Mcu.ThirdPartyNb=0
 Mcu.UserConstants=
@@ -275,4 +277,6 @@
 VP_COMP1_VS_DACOUT1.Mode=INM_DACOUT1
 VP_COMP1_VS_DACOUT1.Signal=COMP1_VS_DACOUT1
+VP_IWDG_VS_IWDG.Mode=IWDG_Activate
+VP_IWDG_VS_IWDG.Signal=IWDG_VS_IWDG
 VP_SYS_VS_DBSignals.Mode=DisableDeadBatterySignals
 VP_SYS_VS_DBSignals.Signal=SYS_VS_DBSignals
Index: ecs_cellMon/firmware/inc/led.h
===================================================================
--- ecs_cellMon/firmware/inc/led.h	(revision 8)
+++ ecs_cellMon/firmware/inc/led.h	(revision 9)
@@ -2,11 +2,11 @@
   ******************************************************************************
   * @file    led.h
-  * @author  ECS - Falko Jahn
+  * @author  ECS - Zed Kazharov
   * @version V1.0.0
-  * @date    29-Sep-2021
-  * @brief   Muster Modul Treiber
+  * @date    13-Jan-2023
+  * @brief   LED Modul Treiber
   *
   *          Beschreibung          
-  *          Dieses Modul enthält ein Musteraufbau einer Header Datei
+  *          
   *
   *          Achtung:   
Index: ecs_cellMon/firmware/inc/meas.h
===================================================================
--- ecs_cellMon/firmware/inc/meas.h	(revision 8)
+++ ecs_cellMon/firmware/inc/meas.h	(revision 9)
@@ -2,7 +2,7 @@
   ******************************************************************************
   * @file    meas.h
-  * @author  ECS - Falko Jahn
+  * @author  ECS - Zed Kazharov
   * @version V1.0.0
-  * @date    30-Jan-2021
+  * @date    15-Jan-2023
   * @brief   MEAS Modul Treiber
   *
Index: ecs_cellMon/firmware/main.emSession
===================================================================
--- ecs_cellMon/firmware/main.emSession	(revision 8)
+++ ecs_cellMon/firmware/main.emSession	(revision 9)
@@ -31,5 +31,8 @@
   <ProjectSessionItem path="cellMon;cellMon"/>
   <ProjectSessionItem path="cellMon;cellMon;Include Files"/>
+  <ProjectSessionItem path="cellMon;cellMon;Include Files;core"/>
   <ProjectSessionItem path="cellMon;cellMon;Source Files"/>
+  <ProjectSessionItem path="cellMon;cellMon;Source Files;core"/>
+  <ProjectSessionItem path="cellMon;cellMon;Source Files;HAL_Driver"/>
  </Project>
  <Register1>
@@ -72,8 +75,9 @@
  </Watch4>
  <Files>
+  <SessionOpenFile windowGroup="DockEditLeft" x="0" y="59" useTextEdit="1" path="Core/Src/main.c" left="0" top="39" codecName="CP 1252"/>
+  <SessionOpenFile windowGroup="DockEditLeft" x="8" y="83" useTextEdit="1" path="Core/Inc/main.h" left="0" top="53" codecName="CP 1252"/>
   <SessionOpenFile windowGroup="DockEditLeft" x="0" y="0" useTextEdit="1" path="inc/modbus.h" left="0" top="117" codecName="CP 1252"/>
   <SessionOpenFile windowGroup="DockEditLeft" x="41" y="139" useTextEdit="1" path="inc/sysdata.h" left="0" top="168" codecName="CP 1252"/>
   <SessionOpenFile windowGroup="DockEditLeft" x="0" y="0" useTextEdit="1" path="inc/output.h" left="0" top="9" codecName="CP 1252"/>
-  <SessionOpenFile windowGroup="DockEditLeft" x="0" y="0" useTextEdit="1" path="inc/meas.h" left="0" top="0" codecName="CP 1252"/>
   <SessionOpenFile windowGroup="DockEditLeft" x="0" y="0" useTextEdit="1" path="inc/doku.h" left="0" top="0" codecName="CP 1252"/>
   <SessionOpenFile windowGroup="DockEditLeft" x="15" y="5" useTextEdit="1" path="inc/bms.h" left="0" top="0" codecName="CP 1252"/>
@@ -81,13 +85,14 @@
   <SessionOpenFile windowGroup="DockEditLeft" x="0" y="76" useTextEdit="1" path="inc/balancer.h" left="0" top="35" codecName="CP 1252"/>
   <SessionOpenFile windowGroup="DockEditLeft" x="80" y="48" useTextEdit="1" path="src/balancer.c" left="0" top="0" codecName="CP 1252"/>
-  <SessionOpenFile windowGroup="DockEditLeft" x="11" y="172" useTextEdit="1" path="src/meas.c" left="0" top="149" codecName="CP 1252"/>
   <SessionOpenFile windowGroup="DockEditLeft" x="50" y="74" useTextEdit="1" path="Core/Src/adc.c" left="0" top="63" codecName="CP 1252"/>
-  <SessionOpenFile windowGroup="DockEditLeft" x="28" y="104" useTextEdit="1" path="Core/Src/main.c" left="0" top="79" codecName="CP 1252"/>
   <SessionOpenFile windowGroup="DockEditLeft" x="0" y="0" useTextEdit="1" path="src/modbus.c" left="0" top="0" codecName="CP 1252"/>
-  <SessionOpenFile windowGroup="DockEditLeft" x="8" y="83" useTextEdit="1" path="Core/Inc/main.h" left="0" top="53" codecName="CP 1252"/>
   <SessionOpenFile windowGroup="DockEditLeft" x="53" y="96" useTextEdit="1" path="Core/Src/gpio.c" left="0" top="62" codecName="CP 1252"/>
-  <SessionOpenFile windowGroup="DockEditLeft" x="71" y="103" useTextEdit="1" path="src/led.c" left="0" top="88" codecName="CP 1252"/>
   <SessionOpenFile windowGroup="DockEditLeft" x="24" y="5" useTextEdit="1" path="inc/eeprom.h" left="0" top="0" codecName="CP 1252"/>
-  <SessionOpenFile windowGroup="DockEditLeft" x="21" y="2" useTextEdit="1" path="src/eeprom.c" left="0" selected="1" top="0" codecName="CP 1252"/>
+  <SessionOpenFile windowGroup="DockEditLeft" x="21" y="2" useTextEdit="1" path="src/eeprom.c" left="0" top="30" codecName="CP 1252"/>
+  <SessionOpenFile windowGroup="DockEditLeft" x="13" y="9" useTextEdit="1" path="inc/led.h" left="0" top="1" codecName="CP 1252"/>
+  <SessionOpenFile windowGroup="DockEditLeft" x="19" y="24" useTextEdit="1" path="src/led.c" left="0" top="0" codecName="CP 1252"/>
+  <SessionOpenFile windowGroup="DockEditLeft" x="24" y="5" useTextEdit="1" path="inc/meas.h" left="0" top="0" codecName="CP 1252"/>
+  <SessionOpenFile windowGroup="DockEditLeft" x="15" y="5" useTextEdit="1" path="src/meas.c" left="0" top="0" codecName="CP 1252"/>
+  <SessionOpenFile windowGroup="DockEditLeft" x="31" y="46" useTextEdit="1" path="Core/Inc/stm32g0xx_hal_conf.h" left="0" selected="1" top="36" codecName="CP 1252"/>
  </Files>
  <EMStudioWindow activeProject="cellMon" fileDialogDefaultFilter="*" autoConnectTarget="J-Link" buildConfiguration="Release" sessionSettings="" debugSearchFileMap="" fileDialogInitialDirectory="D:/projekte/ecs_greenPowerPack/ecs_cellMon/firmware/inc" debugSearchPath="" autoConnectCapabilities="3199"/>
Index: ecs_cellMon/firmware/src/led.c
===================================================================
--- ecs_cellMon/firmware/src/led.c	(revision 8)
+++ ecs_cellMon/firmware/src/led.c	(revision 9)
@@ -2,7 +2,7 @@
   ******************************************************************************
   * @file    led.c
-  * @author  ECS, Falko Jahn
+  * @author  ECS, Zed Kazharov
   * @version V1.0.0
-  * @date    29-Jan-2021
+  * @date    13-Jan-2023
   * @brief   LED Modul 
   *          Beschreibung in Header
Index: ecs_cellMon/firmware/src/meas.c
===================================================================
--- ecs_cellMon/firmware/src/meas.c	(revision 8)
+++ ecs_cellMon/firmware/src/meas.c	(revision 9)
@@ -2,7 +2,7 @@
   ******************************************************************************
   * @file    meas.c
-  * @author  ECS, Falko Jahn  
+  * @author  ECS, Zed Kazharov  
   * @version V1.0.0
-  * @date    30-Jan-2021
+  * @date    15-Jan-2023
   * @brief   Measurement Modul
   *          Beschreibung in Header
