doc: renamed project

This commit is contained in:
SylvanArnold
2025-04-29 13:52:54 +02:00
committed by Sylvan Arnold
parent 244e516bd8
commit 32618389d1
985 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
/*
* Copyright (c) 2022, Erich Styger
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef MODBUS_MCUHEIDELBERG_CONFIG_H_
#define MODBUS_MCUHEIDELBERG_CONFIG_H_
#ifndef McuHeidelberg_CONFIG_USE_MOCK_WALLBOX
#define McuHeidelberg_CONFIG_USE_MOCK_WALLBOX (0)
/*!< if using testing mocks for wallbox state and phase values instead of real state. Note this cannot be used with a real vehicle! */
#endif
#ifndef McuHeidelberg_CONFIG_USE_MOCK_SOLAR
#define McuHeidelberg_CONFIG_USE_MOCK_SOLAR (0)
/*!< if using testing mocks for solar and site power instead of real power */
#endif
#ifndef McuHeidelberg_CONFIG_USE_WATCHDOG
#define McuHeidelberg_CONFIG_USE_WATCHDOG (0)
/*!< if using MCU watchdog functionality */
#endif
#ifndef McuHeidelberg_CONFIG_HYSTERESIS_POWER
#define McuHeidelberg_CONFIG_HYSTERESIS_POWER (150)
/*! Use this value as hysteresis */
#endif
#ifndef McuHeidelberg_CONFIG_BASE_SITE_POWER
#define McuHeidelberg_CONFIG_BASE_SITE_POWER (250)
/*! Use this value as the site base power */
#endif
#ifndef McuHeidelberg_CONFIG_DEFAULT_CHARGING_MODE
#define McuHeidelberg_CONFIG_DEFAULT_CHARGING_MODE McuHeidelberg_User_ChargingMode_SlowPlusPV
/*!< one of McuHeidelberg_UserChargingMode_e, used at startup */
#endif
#endif /* MODBUS_MCUHEIDELBERG_CONFIG_H_ */