2. Changelog¶
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog.
foxBMS 2 uses the following versioning pattern MAJOR.MINOR.PATCH
where MAJOR
, MINOR
and PATCH
are numbers.
Versioning follows then these rules:
increasing
MAJOR
introduces incompatible changesincreasing
MINOR
adds functionality in a backwards compatible mannerincreasing
PATCH
fixes bugs in a backwards compatible manner
2.1. [1.0.1] - 2021-04-16¶
2.1.1. Added¶
Added links to built versions of the documentation to the project README.
Added testing for different versions of TI ARM CGT (versions 10.0.0 and 10.1.1).
Added a readme to the hardware directory.
Added support for LTC 6804-1 (basically an older version of the LTC 6812-1).
Added the updated design files of the foxBMS 2 master v1.0.1.
2.1.2. Changed¶
Activated URL availability checking for https://github.com/foxBMS/foxbms-2 when building the documentation.
Moved code examples in developer manual to separate source files.
The shebang in Python files has been updated from
python
topython3
.Updated waf to version 2.0.22 (from 2.0.21).
Updated database documentation.
Updated information on tracing with Segger J-Trace probes.
Updated the Axivion configuration to use version 7.1.5.
2.1.3. Deprecated¶
2.1.4. Removed¶
Removed external quality check in CI. This functionality has been replaced by the “guidelines” feature that is shipped with this repository.
2.1.5. Fixed¶
Use code page 850 as default when using the
waf.sh
/waf.bat
wrappers.without-halcogen_diff-includes.diff
was unintentionally excluded by the regex in.gitignore
.Fixed repository name in the documentation.
Fixed available waf commands and put the table in a separate csv file.
Fixed comments in LTC driver build scripts
Includes directories were not correctly set for the drivers LTC 6811-1 and LTC 6812-1.
Clarification and correction of the license namings (no changes in the licenses themselves). The license of the foxBMS 2 software is the BSD 3-Clause License. This license is also formally known as BSD 3-Clause “New” or “Revised” License. As of this release foxBMS 2 added the SPDX short identifier to the software sources (
SPDX-License-Identifier: BSD-3-Clause
) according to SPDX Specification Version 2.2. The license text of the Creative Commons Attribution 4.0 International License has been added to the repository. The SPDX short name of this license isCC-BY-4.0
. For more information see License.Fixed the names of variables in bash scripts on Windows.
2.2. [1.0.0] - 2021-04-01¶
2.2.1. Added¶
Added automated installer script for miniconda3.
Added automated installer script for MinGW64.
Added automated installer script for LLVM.
2.2.2. Changed¶
Finalize red-fox conda environment
2021-04-red-fox
based onred-fox-devel-020
. No packages are updated, just finalized the name.Removed dependency of configured power lines from overcurrent check in SOA module. The overcurrent is now checked against allowed cell, string and pack current limits.
C source files, that are not vendored, are now
ASCII
encoded.Improved the code quality by adding assertions in various locations and removing unused code.
Base decisions in
bms
on pack value database entry as this entry contains only validated values. Do not directly use current sensor measurements anymore.Fixed function names in the system monitoring module.
Replace remaining
TRUE
andFALSE
in embedded sources withtrue
andfalse
respectively fromstdbool.h
.Updated LLVM to version 11.0.1
Only compile foxBMS 2 source and operating system sources in
strict_ansi
mode
2.2.3. Deprecated¶
2.2.4. Removed¶
Removed several unused defines.
2.2.5. Fixed¶
Style guide check did not properly exclude files when checking
*.rst
files.Fix
@prefix
check in Doxygen comments.Fix
@prefix
for modulesepcos_b57251v5103j060
,epcos_b57861s0103f045
andvishay_ntcalug01a103g
.Do not add
__TIME__
and__DATE__
macros to list of predefined defines in VS Code.Create all build-time created include directories VS Code knows about in
c_cpp_properties.json
to remove workspace warnings.Add back
Previous
andNext
buttons back in rendered documentation.Updated getting started information.
Fixed function names and variable names of database structs in the
bms
module.Fixed function names and variable names of database structs in the
adc
module.Fixed CAN driver problem when cache is enabled.
conda-init.bat
used a wrong path to write the.condarc
file if the user name contained whitespace.
2.3. [0.3.0] - 2021-03-16¶
2.3.1. Added¶
Added coverage reports for the unit tests of the waf-tools.
Added general safety information.
Added a rudimentary hardware change process to the hardware developer manual.
Added information on the criticality of used tools.
Added the calculation of pack values (current, power, high voltage) to the redundancy module.
Added a manual on using debugger by Segger or Lauterbach in conjunction with the platform.
Added a problem matcher to the
build_docs
task in Visual Studio Code so that the IDE can parse warnings printed from DoxygenAdded documentation stubs for all embedded software modules
Added interface description for CAN communication (.dbc and .sym)
2.3.2. Changed¶
SBC no longer monitors input on FCCU pins as usage of these pins is currently not supported
The MIC modules are now able to define their own threshold values for plausible cell voltage measurements. In order to implement this, the MIC has to declare a struct of type
MIC_PLAUSIBILITY_VALUES_s
and pass it to the plausibility-functions of the MIC.Improves deployment speed with the internal deployment script.
Simplifies the macro that records the program counter in
fassert.h
with input from static analysis.Disables the static analysis finding for dead branches in the expansion of the
FAS_ASSERT
assertion macro as the assertion should not be hit by normal operating code.Clarified the internal merge request template.
Asserts that the SPI function
SPI_TransmitReceiveDataDma()
does not receive null pointer as parameter.Improved minor code quality issues in the
DIAG_Initialize()
function.Improved the documentation on installing dependencies.
Removed function
DIAG_configAssert()
as it is replaced byFAS_ASSERT
.The diagnosis module has been restructured. The callbacks for each type of diagnosis event are now implemented in type specific files, e.g., for the current sensor in
diag_cbs_current-sensor.c
. These files are insrc/app/engine/diag/cbs/
. Unit tests have been added.Fixed typos related to battery cell and battery system.
Enhanced the documentation section on the build process.
Improved the documentation of the temperature sensor interface (TSI).
Some structs in the database did not conform to the naming conventions.
Renamed the hardware directory from
hw
tohardware
.clang-format
,black
andpylint
tools have been moved into the guidelines tool. Configuration is now done viarules.json
as all other guidelines.
2.3.3. Deprecated¶
2.3.4. Removed¶
2.3.5. Fixed¶
Corrected the function
LTC_I2CCheckACK()
that did not check the acknowledge signal of multiplexer over I2C communication.Corrected the function
LTC_SetMUXChCommand()
because message content for I2C communication with multiplexers was wrong.Corrected several instances in the
LTC6813-1
-driver where the loop-counter variable has been declared outside of the loop.Renamed function names in
redundancy
module to adhere to style guide rules.Fixed wording and replaced isolation by insulation.
Replaced references to LG INR18650MJ1 by generic battery cell configuration.
Tasks were not initialized correctly. The IDLE task never run.
2.4. [0.2.0] - 2021-02-02¶
2.4.1. Added¶
A parser to validate the linker output was added. The parser analyzes the output of the linking process to validate that symbols were pulled from the specified source. If the symbol is pulled from another source the build process throws an error.
A parser to validate the style guide rules was added. The parser analyzes the files in the repository for style guide rule compliance. If a rule is violated the check guidelines and style guide process throws an error.
Updated the development conda environment to
red-fox-devel-020
with Python version 3.8, updated packages and new packages:mypy
,rope
,seaborn
,statsmodels
,scikit-learn
,filterpy
,dask
andscipy
.Documentation of the development workflow has been added as a draft.
Discard return value of
memcpy()
inDATA_Task()
as the return value is not further used.Added first draft of
state estimation
module. This module is located within thealgorithm
module and responsible for calculating state of charge SOC, state of energy SOF, state of health SOH and state of function SOF. Different calculation methods for each state estimation algorithm can be selected via configuration filebms.json
.Added a dummy insulation monitoring device driver. Non-functional Bender iso165c driver has been added (driver fails to build).
Added a driver for Smart Power Switches that is encapsulated by the contactor module. The contactor module handles the communication with the Smart Power Switch driver and manages the ICs.
Added a state of energy SOE estimation implementation based on counting energy.
Added documentation of the hardware development flow.
Enabled the FreeRTOS idle hook in user code. That means that the function
FTSK_UserCode_Idle()
will be called every time the OS goes into idle state.Extended the conda environment with a sphinx-plugin that provides BiBTeX-capabilities. Added this plugin to the documentation build in order to generate bibliographies.
Extended the API of the Temperature Sensor Interface (TSI) in order to return maximum and minimum limits for plausible measurement values.
Extended the documentation with a manual for writing unit tests and a reference to the C coding standard the we use.
Added an initialization function to
sys_mon
module to detect possible configuration errorsAdded more files to the unit test coverage analysis in order to have a more complete image of the project and its unit test coverage.
The conda environment configuration that is distributed within the has now an option to validate that it is working as intended. The conda environment can be tested by running
tools\utils\cmd\run-python-script.bat tests\env\packages_test.py -f tests\env\conda_env_win32.json
from the repository root.
2.4.2. Changed¶
The
algorithm
-implementation is now able to handle calling a function cyclically and calling an additional initialization function. The implementation of the algorithm does not need to interact with thealgorithm
-API anymore as this is now handled by the module. In order to not block the rest of the system with an algorithm that might take longer for computation, the algorithm module has been moved into its own task with a lower priority.Updated FreeRTOS to version 10.4.3 (from 10.3.0).
Updated waf to version 2.0.21 (from 2.0.20).
Consequently uses deci degree Celsius as integer-value (instead of degree Celsius floats) in the Temperature Sensor Interface (TSI).
Moved the
slaveplausibility
-modules into one central module in the MIC and renamed it toMIC plausibility
.Initialize runner variables in loops correctly as unsigned.
Renamed directory
measurement-ic
tomic
.Renamed directory
temperature-sensors
tots
.Changed linker script prefix from
ldscript_
tolinker_script_
.Renamed all references in the build toolchain and documentation from
linkerscript
tolinker_script
.Source files are no longer needed to be added manually to the documentation, instead sources are linked into the documentation based on the Doxygen generated documentation.
Sets
UNITY_INCLUDE_EXEC_TIME
in the ceedling configuration in order to tell unity to track the time that a single test takes. This information is aggregated in the JUnit test report that is generated.Updated the unit test framework
ceedling
to version0.31.
and vendored theceedling
release with the repository in order to have more control over the executed version. Simplified the installation of Ruby in order to to reflect these changes. Simplified thef_unit_test
waf-tool.
2.4.3. Deprecated¶
2.4.4. Removed¶
Removed the deprecated Anaconda extension from the list of recommended Visual Studio Code plugins that is shipped with the project.
2.4.5. Fixed¶
If the runtime support library was missing on a machine, the configure step failed, although the runtime support library was successfully built by the compiler. Now a warning is printed that the runtime support library is missing and that it will be built. An error is no longer generated when the build succeeds.
The Maxim driver did not properly map multiple modules onto internal data structures for multi-string systems. This has been fixed.
Fixes various comparisons between incompatible enum types.
Fixed erroneous behavior of the GUI. The GUI implementation is now
black
andpylint
compliant.Fixes erroneous hard-coded PEC-values in the LTC driver. A regression is prevented by added unit tests.
The project version number was missing in the documentation build. The version information is now properly passed to the documentation build.
The top of every documentation page began with
orphan:
.Fixed implicitly defined functions.
Fixed the unit test documentation on how to use ceedling directly. The old version mentioned a wrong path for the
project.yml
used by ceedling.
2.5. [0.1.0] - 2020-11-17¶
Initial version