2. Changelog
All notable changes to this project will be documented in this file.
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 significant changes, that require some larger work to update a project to this version.increasing
MINOR
introduces changes, that require less work than a major update and most of the work should be straight forward in order to update a project to this version.increasing
PATCH
introduces minor changes, that only require minor and straight forward work to update a project to this version.
2.1. [1.7.0] - 2024-08-08
foxBMS 2 now ships with a new venv environment 2024-08-pale-fox. See Software Installation for information on updating.
In order to get the unit tests working the Ruby Gems need to the updated. See Software Installation for information on installing the Ruby Gems.
foxBMS 2 now ships with a set of code
workspaces that are created at
configuration time:
generic: at the root of the repository. Useful setup for working on the entire repository, but not perfectly setup for specific tasks (see below what might be suited better).
src
: configured for developing the target/embedded softwaretests/unit
: configured for developing the unit tests of the target/embedded software
2.1.1. Added
Add two can callback functions and an AFE driver to extract the debug cell temperatures and cell voltages from the related CAN messages and write them to their relevant database entries.
Added script to plot periods between CAN messages.
The CAN driver has been improved. The implementation of cyclic and asynchronously message is split into separate files to simplify the maintainability and addition of new messages (see How to Use the CAN Module).
The implementation of macros that compose a CAN message has been made consistently (see How to Use the CAN Module).
The
f_DebugBuildConfiguration
message was added. It transmits the contents of the filesbattery_system_cfg.c
,battery_cell_cfg.c
andbms.json
. It is requested via thef_Debug
message.Additional naming conventions have been defined.
The temperature sensor Semitec 103JT has been implemented.
Add a short installation summary as markdown document in the repository root (INSTALL.md). This document shall only serve as a summary while the detailed instructions are still document at Software Installation.
Added energy and charge throughput accumulation in charge and discharge direction.
Added more unit tests for ADI ADES1830 AFE driver.
2.1.2. Changed
Changed database definition in struct
DATA_BLOCK_BALANCING_CONTROL_s
forbalancingState
anddeltaCharge_mAs
from a two-dimensional array (xxx[BS_NR_OF_STRINGS][BS_NR_OF_CELL_BLOCKS_PER_STRING]
) to three-dimensional array (xxx[BS_NR_OF_STRINGS][BS_NR_OF_MODULES_PER_STRING][BS_NR_OF_CELL_BLOCKS_PER_MODULE]
). RenamedbalancingState
toactivateBalancing
and made it bool.Changed the algorithm to activate balancing in LTC LTC6813-1-driver.
Datatype for cell voltage and cell temperature invalid flags has been changed to boolean (from bit masks).
Move the interpretation of Bender iso165c can messages from the driver to the corresponding can callback files and use the
can_helper
functions for the implementation.Fix iteration over cell temperature array in
LTC_InitializeDatabase
in the LTC LTC6813-1-driver.Updated the unit test framework
Ceedling
to version1.0.0-ba45d2c
. This fixes the problem, thatCeedling
always exited with error code 0 despite there were errors.Some unit tests for the ADI ADES1830 AFE were broken. The unit tests do now work as expected.
Improved documentation.
Move
pyproject.toml
fromconf/fmt/pyproject.toml
to the root of the the repository.Renamed defines for NXP PCA9539 port expander pin definitions.
The definition of the CAN messages has been improved:
CAN messages and signals now use a
f_
instead of afoxBMS_
prefix.Enums are now used for displaying most of the signal values.
The message definitions have been changed to improve the message layout. The messages have been changed as follows (an * for the old message name and ID indicates, that the message did previously not exist):
Old Message Definition
New Message Definition
Name
ID
Name
ID
foxBMS_FatalErrors
0FFh
f_CrashDump
0FFh
foxBMS_BmsStateRequest
230h
f_BmsStateRequest
210h
foxBMS_BmsState
220h
f_BmsState
220h
foxBMS_BmsStateDetails
226h
f_BmsStateDetails
221h
foxBMS_PackMinMaxValues
223h
f_PackMinimumMaximumValues
231h
foxBMS_PackLimits
224h
f_PackLimits
232h
foxBMS_PackValues
222h
f_PackValuesP0
233h
*
*
f_PackValuesP1
234h
foxBMS_CellVoltages
240h
f_CellVoltages
250h
foxBMS_CellTemperatures
250h
f_CellTemperatures
260h
foxBMS_Debug
200h
f_Debug
300h
foxBMS_DebugResponse
227h
f_DebugResponse
301h
foxBMS_PackStateEstimation
225h
f_PackStateEstimation
235h
foxBMS_StringState
221h
f_StringState
240h
foxBMS_StringMinMaxValues
281h
f_StringMinimumMaximumValues
241h
foxBMS_StringValuesP0
280h
f_StringValuesP0
243h
foxBMS_StringValuesP1
283h
f_StringValuesP1
244h
foxBMS_StringStateEstimation
282h
f_StringStateEstimation
245h
foxBMS_CellVoltages
240h
f_CellVoltages
250h
foxBMS_CellTemperatures
250h
f_CellTemperatures
260h
foxBMS_Debug
200h
f_Debug
300h
foxBMS_DebugResponse
227h
f_DebugResponse
301h
foxBMS_PackStateEstimation
225h
f_PackStateEstimation
235h
foxBMS_StringState
221h
f_StringState
240h
foxBMS_StringMinMaxValues
281h
f_StringMinimumMaximumValues
241h
foxBMS_StringValuesP0
280h
f_StringValuesP0
243h
foxBMS_StringValuesP1
283h
f_StringValuesP1
244h
foxBMS_StringStateEstimation
282h
f_StringStateEstimation
245h
foxBMS_CellVoltages
240h
f_CellVoltages
250h
foxBMS_CellTemperatures
250h
f_CellTemperatures
260h
foxBMS_StringState
221h
f_StringState
240h
foxBMS_Debug
200h
f_Debug
300h
foxBMS_DebugResponse
227h
f_DebugResponse
301h
foxBMS_UnsupportedMultiplexerVal
201h
f_DebugUnsupportedMultiplexerVal
302h
2.1.3. Deprecated
2.1.4. Removed
The GUI has been removed (was implemented in
tools/gui/*
).
2.1.5. Fixed
Fixed crash in NXP MC33775A driver, which was caused by a wrong stop condition when iterating over cell voltages in function
N775_InitializeDatabase
.Fixed bug in NXP MC33775A driver, which caused an out-of-bounce access when reading out the unique device ID in function
N775_Enumerate
.Fixed bug in NXP MC33775A driver, which caused the daisy-chain to be not initialized correctly in some cases. No measurement data could be read from the daisy-chain in these cases.
Fixed bug in NXP MC33775A driver, which caused the the invalid flags for cell voltages and cell temperatures to be not set correctly.
Fixed bug in NXP MC33775A driver, that string voltage was not calculated correctly. For this reason, diagnosis entry
DIAG_ID_PLAUSIBILITY_PACK_VOLTAGE
was always set. String voltage is now calculated by adding up the individual valid cell voltage measurements.Fixed error in function
FRAM_ReinitializeAllEntries
, always returnedSTD_OK
.Fixed upper address part calculation from the FRAM address.
Fixed the Unix time by setting
RTC_CTIME_YEAR_START
to 1970.Fixed typos.
2.2. [1.6.0] - 2023-10-12
Starting with this release, foxBMS 2 now supports the ADI ADES1830 AFE.
This release updates the unit testing framework Ceedling
to
0.32.0-52ba9d2
and requires an update of Ruby.
To update Ruby and the required Gems see Install Ruby and Add Required Gems.
For information on the unit testing framework see (Unit Tests).
2.2.1. Added
Support for the ADI ADES1830 AFE (see ADI ADES1830).
The GUI now also displays the BMS state.
Documentation of the precharging process (Precharging).
The temperature sensor Vishay NTCLE413E2103F102L has been implemented.
A logging file is created in a post-build process that shows the stack consumption of each function. This file is created in the variant build directory (
build/bin/foxbms.stacks.json
).Clamp 15 wake-up behavior. The BMS is now correctly switched on/off, depending on clamp 15 signal. However, resistor R1101 MUST not be populated to correctly work and currently only MCU SBC is switched off.
Added dummy AFE implementation to enable a future support of TI AFEs.
Add a README.md that explains the AFE implementation for the TI AFEs. The README.md is found at
src/app/driver/afe/ti/README.md
.The git commit hash can now be requested and transmitted via CAN.
Added a driver for the HONEYWELL BAS6C-X00 aerosol sensor.
The unit testing framework is now supported on Linux (see Linux specific Usage).
2.2.2. Changed
Updated to
Ceedling
0.32.2-86f6b27.The default behavior in FreeRTOS is now to check for stack overflows. The type of checking has been set to variant
2
. See https://www.freertos.org/Stacks-and-stack-overflow-checking.html for the FreeRTOS internal details.The function
FTSK_InitializeUserCodeEngine
used an outdated enum value to check for a correct startup. As the outdated enum was still defined in the HAL (generated by HALCoGen) this did not lead to an error.Split SOX database entries into dedicated SOC, SOH and SOE database entries.
Improved code quality of the unit tests (
tests/unit
).The unit tests are now compiled more strictly with respect to warnings (
-Wall
,-Wextra
,-Werror
), are required to be strictly ISO C conforming (-pedantic
). Furthermore the unit test are now compiled with the correct C standard version (std=c11
).Improved assertions for invalid CAN configurations.
Improved code organization and style guide conformance of the NXP MC33775A driver (NXP MC33775A).
Added check for successful transmission of CAN messages and try to resend them if transmission failed.
The rules file must be sorted.
Fixed several Axivion findings.
Removed the Axivion compiler workaround for
_Imaginary
as this is supported since Axivion 7.5.2 (which is the current foxBMS 2 default configuration).Lauterbach debugger configuration:
The automatically created Lauterbach configuration now loads the symbol table of default binary (
build/bin/foxbms.elf
) automatically on startup.The script file that contains list of macros and their values is automatically load on debugger startup. This script is created based on the compiler output files (
build/bin/**/*.ppm
) and the configuration script intools/debugger/lauterbach/load_macro_values.cmm.in
. To recreate this table after a new build thetools\debugger\lauterbach\get_macro_values.py
script needs to be run. After that, the created file needs to be loaded again in the Lauterbach command line bydo <path/to/repo>/build/load_macro_values.cmm
.Disabled configuration for Trace32 python API in file
tools/debugger/lauterbach/config.t32.cmm.in
.
Renamed driver for Murata NCU15XH103F6Sxx temperature sensor to NCxxxXH103 as the temperature characteristic is identical for multiple sensors
Renamed define
BS_NR_OF_PARALLEL_CELLS_PER_MODULE
toBS_NR_OF_PARALLEL_CELLS_PER_CELL_BLOCK
Changed database definition in struct
DATA_BLOCK_CELL_VOLTAGE_s
forcellVoltage_mV
from a two-dimensional array (cellVoltage_mV[BS_NR_OF_STRINGS][BS_NR_OF_CELL_BLOCKS_PER_STRING]
) to three-dimensional array (cellVoltage_mV[BS_NR_OF_STRINGS][BS_NR_OF_MODULES_PER_STRING][BS_NR_OF_CELL_BLOCKS_PER_MODULE]
)
2.2.3. Deprecated
2.2.4. Removed
Removed unused empty files from the repository.
2.2.5. Fixed
Fixed a bug in MRC module that string power was not calculated correctly.
Fixed a bug that precharging the battery system has been re-tried for an infinite number of tries regardless of the configuration of
BMS_PRECHARGE_TRIES
.Fixed a bug in CAN module that periodic messages would not be sent correctly after the BMS had been running continuously for 50 days.
Fixed a bug that stack size for I2C and AFE tasks were sized incorrectly. They were defined as words, whereas the define states a stack size in byte. This lead to stack overflows for some configurations.
BS_NR_OF_PARALLEL_CELLS_PER_CELL_BLOCK
is now considered calculating the allowed continuous current limits.
2.3. [1.5.1] - 2023-02-23
foxBMS 2 now ships with a new conda environment 2023-02-fennec-fox
and the
local conda environment needs to be updated.
2.3.1. Added
2.3.2. Changed
Update the static code analysis to Axivion 7.5.2 (from 7.5.0).
Simplified the conda development environment.
2.3.3. Deprecated
2.3.4. Removed
2.3.5. Fixed
Renamed struct member packVoltage_mV to stringVoltage_mV for cell voltage database entry to adhere to our naming convention.
2.4. [1.5.0] - 2023-02-03
2.4.1. Added
Added hardware design files (e.g., schematics, layout, BOM and STEP file etc.) for the NXP MC33775A monitoring IC.
Added driver for the PCF2131 RTC. The driver uses I2C to communicate with the IC.
A basic GUI to interact with the foxBMS 2 via CAN from a PC.
The software version and the die ID can be requested via CAN.
The FRAM can now be initialized/reinitialized via CAN.
Stub code for the software reset via CAN has been implemented.
The precharge abort reason (voltage or current) is now evaluated and the result is transmitted via CAN.
Now CAN messages with extended identifier can be transmitted and received. Four CAN mailboxes (61-63) are reserved for the reception of messages with extended identifiers on each CAN. The HALCoGen configuration for these mailboxes is overwritten during the initialization phase.
The I2C driver API was reworked. There are now three types of communication: read, write and write followed by repeated start followed by read.
The I2C communication now uses DMA and is made in a separate task.
Basic documentation of defines that can be used to define the application behavior.
2.4.2. Changed
The default interface configuration for BMS-Slaves is the interface 1 on the BMS-Interfaces:
for LTC-based interfaces: hardware chip select 1 on SPI 1
for NXP-based interfaces: hardware chip select 1 on SPI 1
The chip select configuration has been unified. The previous implementation worked like this:
for software chip select the SPI configuration has been configured directly in the configuration struct by setting the member
csPin
to a certain pin and the membercsType
toSPI_CHIP_SELECT_SOFTWARE``in a variable of type ``SPI_INTERFACE_CONFIG_s
.For hardware chip select, i.e.,
csType
set toSPI_CHIP_SELECT_HARDWARE
, the configuration incsPin
was ignored, and the pin configuration in the memberpConfig
was evaluated.
Now, the SPI configuration is done by setting the chip select type via the member
csType
and the pin to be used via the membercsPin
in a variable of typeSPI_INTERFACE_CONFIG_s
. Therefore there is no need anymore the adapt thespiDAT1_t
configuration, when another chip select should be used.The members in DATA_BLOCK_ERROR_STATE_s have been renamed to better reflect what each entry actually indicates.
The type of all members in DATA_BLOCK_ERROR_STATE_s have been changed to bool.
The order of members in DATA_BLOCK_ERROR_STATE_s has been changed, so that the entries are logically grouped. This change is transparent, as long as the application does not relay on the memory layout.
Changed data type for error flags in database entries to boolean.
Applied the include-what-you-use paradigm to the foxBMS 2 sources. The C Coding Guidelines have been adapted accordingly and generally been improved.
Added dedicated enum for error flags to .dbc respectively .sym file.
Rewrote the CRC implementation for the LTC ICs from scratch and added unit tests for the new implementation.
Update the static code analysis to Axivion 7.5.0 (from 7.4.6).
Software version is now also saved in FRAM version struct. As this is The the first FRAM entry, this changes the memory layout and makes FRAM entries existing prior to this version invalid.
A successful boot is now indicated via CAN by sending
the magic start sequence,
the software version information,
the MCU die ID,
the MCU lot number,
the MCU wafer number and
the magic end sequence.
See
src/app/engine/config/sys_cfg.c
for implementation details.Updated the documentation section about Lauterbach debug probes.
Removed define
BS_MAX_SUPPORTED_CELLS
from filebattery_system_cfg.h
and moved the definition to the individual AFE implementations.Use
float_t
instead offloat
.Aligned the hardware documentation for BMS-Master, BMS-Interface and BMS-Slave (see Master Overview, Interfaces Overview, and Slaves Overview)
Updated the documentation section about the foxBMS 2 platform
The functionality to switch to user mode is now implemented as an inline function instead of a macro.
The default optimization level is set to -O0 (see
conf/cc/cc-options.yaml
).
2.4.3. Deprecated
2.4.4. Removed
2.4.5. Fixed
Fixed the hardware readme as it referenced the wrong foxBMS BMS-Master version.
Fixed the regular expression for checking the validity of macro names.
Fixed wrong configured chip select pin for MCU SBC. Chip select 1 instead of chip select 0 was configured.
2.5. [1.4.1] - 2022-10-27
foxBMS 2 updated to TI ARM CGT 20.2.6.LTS. Installation instructions are found at Section 3.3.1.
2.5.1. Added
The new default compiler set in
conf/env/paths_win32.txt
andconf/env/paths_linux.txt
is now TI ARM CGT v20.2.6.LTS (shipped with CCS12.0.0
).Added driver for Murata NCU15XH103F6Sxx temperature sensor
2.5.2. Changed
Updated the hardware design files (e.g., schematics, layout, BOM and STEP file etc.) of the BMS-Master to
v1.1.5
(see v1.1.5).Updated documentation of the interface using the Maxim MAX17841B transceiver chip.
The implementation of the CAN driver has been changed to simplify adding new messages. Furthermore it is now possible to force a certain style on how CAN messages are defined in the symbol/dbc files as well as in the source code. For further information see How to Use the CAN Module.
Updated version of
.sym
file for the definition of the CAN messages and signals to v6.0 (from 5.0).Update the static code analysis to Axivion 7.4.6 (from 7.4.0).
2.5.3. Deprecated
2.5.4. Removed
Unused calculation of MOL, RSL and MSL curves for trapezoid algorithm in
SOF
module.
2.5.5. Fixed
In
ADC
module, corrected formula making the conversion from raw ADC reading to voltage in mV.The address of two diagnostic registers in the Smart Power Switch driver was wrong.
Endianness definition throughout the CAN signals was inconsistent. Not all signals were correctly defined as big-endian.
2.6. [1.4.0] - 2022-07-29
2.6.1. Added
foxBMS 2 has been certified as open source hardware by the Open Source Hardware Association under the OSHWA UID DE000128. This information has been added to the README and license documentation (see Open Source Hardware Certification).
Added Axivion configuration (see
tests/axivion/addon
) to check forsource files to be decodable with a specific encoding
POSIX 3.206
filename uniqueness in the build process
file level doxygen comment
doxygen comments for extern and static variables, and typedefs
the foxBMS 2 license header
literal suffixes for numerical assignments
Added test cases for the Axivion rules (see
tests/axivion/addon-test
)The foxBMS 2 GUI wrapper is now implemented as a module.
Added a driver for the NXP MC33775A monitoring IC. The driver measures cell voltages, cell temperatures via an I2C multiplexer and controls cell balancing.
2.6.2. Changed
Updated the hardware design files (e.g., schematics, layout, BOM and STEP file etc.) of the BMS-Master to
v1.1.3
(see v1.1.3).Function names are now checked by Axivion to conform to the guidelines.
Use correct prefix in the
version
module (Version Module)assert
module (FASSERT Module)
The behavior of the
build_bin
command, which creates the binary, has been improved. If the BMS configuration file (conf/bms/bms.json
) has been changed, the project needs to be reconfigured (by runningwaf configure
, see Building the Application).The following settings in BMS configuration file (
conf/bms/bms.json
) have been changed:The AFE key for the IC has been renamed from
chip
toic
in theslave-unit/analog-front-end
section.The balancing strategy has been moved into the
application
section.The operating system key has been renamed from
operating-system
tortos
.The SOF needs to be configured in the
application/algorithm/state-estimation
section. Currently"sof": "trapezoid"
is the only valid option.
Several variables and functions have been renamed to conform to the foxBMS 2 style guide (Style Guide). There will be additional changes in future releases as the task of having a fully style guide conforming repository is an iterative and timely process.
2.6.3. Deprecated
2.6.4. Removed
2.6.5. Fixed
The macro
SOC_STRING_CAPACITY_As
was incorrectly braced, as it had less closing than opening braces (src/app/application/algorithm/state_estimation/soc/counting/soc_counting_cfg.h
). This however did not reveal as bug, as the calling function fixed the incorrect bracing by adding the missing brace correctly (src/app/application/algorithm/state_estimation/soc/counting/soc_counting.c
).The delay between chip select activation and start of SPI transmission and the delay between end of SPI transmission and chip select deactivation have been increased to avoid SPI transmission errors for AFEs.
The CAN2 message boxes were not activated within the HALCoGen configuration.
Fix several unit testing warnings due to a misconfiguration with respect to
BS_NR_OF_STRINGS
.
2.7. [1.3.0] - 2022-05-30
foxBMS 2 updated to TI ARM CGT 20.2.5.LTS. Installation instructions are found at Section 3.3.1.
foxBMS 2 updated to LLVM 13.0.0. Installation instructions are found in the LLVM section.
2.7.1. Added
The new default compiler set in
conf/env/paths_win32.txt
andconf/env/paths_linux.txt
is now TI ARM CGT v20.2.5.LTS (shipped with CCS11.0.0
).Add support for the environment variable
FOXBMS_2_CCS_VERSION_STRICT
to check for the exact CCS version.Added hardware specifications for the LTC based slaves to the documentation.
Added a superimposed state machine for all insulation monitoring device drivers to control the subordinate, device specific driver implementations.
Added driver implementation for Bender IR155 insulation monitoring device.
Transmit the unique ID of the MCU on which foxBMS 2 is running on startup via CAN.
Added a mechanism to the
algorithm
module that allows to reinitialize an algorithm.Added an API to the
MCU
module that allows to measure microseconds with theRTI
module.Added a can helper that transforms a boolean to an integer value (fitting to the CAN messages).
The Axivion configuration has been updated to
7.2.3
in the release1.1.2
, however the version setting in the configuration file has not. The versions of the Axivion Suite and the configuration files have been aligned to7.2.3
.Added the version information to the header section of all
C
source and header files.Added a function to compute CRCs with the MCU hardware.
The
FRAM
module now writes a CRC of the data written to the FRAM. It also reads the stored CRC and compares it with the CRC calculated on the read data. This makes FRAM entries existing prior to this version invalid.A
DIAG
entry was added for FRAM errors.Added documentation for the
FRAM
and theCRC
modules.Integrated interaction with the diagnostic module into the Maxim
AFE
driver.Added information on debug adapters to the documentation.
Documented the rule that pointer parameters to functions must indicate in their Doxygen documentation whether they are used as input, output or both.
Added a continuously running task with same priority as the 1ms task. It is suspended by default if unused.
Added documentation on the Maxim driver.
2.7.2. Changed
The linker step now uses
--start-group
and--end-group
to re-read libraries until all symbols are resolved instead of--reread_libs
. This change simplifies the integration of the build into Axivion.FreeRTOS configuration is now validated in
os_freertos_config-validation.h
.Updated the documentation of the of the LTC-based interface LTC LTC6820 version 1.0.3 (see Interface LTC-6820 v1.0.3).
Updated LLVM to version 13.0.0.
Updated the pinout documentation for the BMS-Master version 1.1.1 (see Master TMS570 v1.1.1).
Update the static code analysis to Axivion 7.4.0.
Increased the size of the variable that describes stack sizes for FreeRTOS, allowing for the fully supported stack size of the port.
The diagnosis entries for the
LTC
module have been renamed in order to reflect that they are relevant for allAFE
implementations.The schema file for the
bms.json
configuration file has been split into several files for readability andcode
has been made aware of the schema.Added a style check that constant values should be on the right hand side of a comparison.
Updated FreeRTOS to version 10.4.5 (from 10.4.3).
Cleaned up the CAN callback for receiving commands.
Extended the script for updating the doxygen headers in source files so that it fetches first and then compares to the tracking branch.
Updated the documentation of the system monitoring module and implemented the recording of violations to the persistent memory.
Split the definition of CAN callback functions into separate definitions for received and transmitted messages in order to better reflect the actual implementation and prevent wrong usage.
Number of strings now configured to one by default.
Renamed the
FRAM
functions to adhere to verb-noun style.Extended the Axivion configuration so that parameters without an assertion can be suppressed.
The threshold above which balancing is started for a single cell has been made configurable by the foxBMS 2 CAN messages that are already defined.
MCU specific defines have been moved from
general.h
tomcu.h
.The static assert macro
static_assert
has been renamed tof_static_assert
to work around compiler limitations.The following defines have been renamed to be aligned with Naming Conventions:
BS_NR_OF_MODULES
toBS_NR_OF_MODULES_PER_STRING
,BS_NR_OF_CELLS_PER_MODULE
toBS_NR_OF_CELL_BLOCKS_PER_MODULE
andBS_NR_OF_BAT_CELLS
toBS_NR_OF_CELL_BLOCKS_PER_STRING
.
Loop correctly over
BS_NR_OF_MODULES_PER_STRING
,BS_NR_OF_CELL_BLOCKS_PER_MODULE
andBS_NR_OF_CELL_BLOCKS_PER_STRING
.Function names are now checked by Axivion to conform to the guidelines.
Improved the MISRA-C conformance of of the database module (Database Module).
Fixed the pack current check in
SOA_CheckCurrent
.Fixed LLVM install script to check for permissions before running the script.
2.7.3. Deprecated
2.7.4. Removed
Removed unused function
OS_SystemTickHandler()
.The Cppcheck support and its configuration files as well as the respective build and clean commands have been removed. The static program analysis of the embedded software is done by Axivion Bauhaus Suite (see Axivion Bauhaus Suite).
2.7.5. Fixed
Fixed a bug where the
update_doxygen_header.py
script tried togit add
files that did not exist.The HALCoGen SPI interface chip select configuration is overwritten and all hardware chip selects are disabled when using a software chip select. This causes all SPI communication using hardware chip selects to fail for this SPI interface. Now the SPI chip select register are correctly configured before starting a SPI transaction.
Suppress a superfluous warning during unit test builds concerning the number of bytes per word (as this information is used for task sizing).
Fixed “unsafe” macros that had not parentheses and added this violation to violations that fail the CI.
Fixed undesired attempt of installation of git hooks even when the project was not stored in a git repository.
Fixed import order in Python files.
Fixed a static assertion in the Maxim driver (that prevented in some constellations compilation due to a logic error).
Fixed a timing violation in the Maxim driver (a computationally costly operation has been moved out of the 1ms-task).
Some defines where invisible to the preprocessor due to missing includes. This has been resolved and measures taken that this situation cannot return.
The HALCoGen generated startup file
HL_sys_startup.c
does not need to be compiled as foxBMS 2 implements the startup infstartup.c
.
2.8. [1.2.1] - 2021-12-08
foxBMS 2 now ships with a new conda environment 2021-11-fennec-fox
and the
local conda environment needs to be updated.
2.8.1. Added
Added enum typedef for GPIO pin state.
Add driver for the temperature sensor NTCLE317E4103SBA from Vishay.
Added documentation for Coulomb-counting and extended the documentation of the state-estimation-module.
Added a define for
NULL
.Make Git a required software installation (see Install Git).
If a system-wide installation of Git is not found in the build process, check for a user installation.
Added an API to check whether a certain amount of milliseconds has passed.
Added an API to the
spi
-module that allows to check if the interface is available.Added a python script that can help with searching for regressions after resolving a complete violation category in Axivion.
Automatically update the
@updated
doxygen comment before committing when pre-commit hooks are activated.Added documentation for the LTC based interface and slaves.
In the
spi
-module, hardware Chip Select pins can now be used. Until now only software Chip Select pins could be used.
2.8.2. Changed
Rewrote the linker script: the sections lengths are no longer hard-coded.
The memory layout of
OS_TASK_DEFINITION_s
has been changed.The
os
-module wrapper for task definition now also contains thepvParameters
.Static analysis cleanup of the
os
-module andftask
-module wrappers.Tasks are now marked as requiring FPU context, to prevent memory corruption during task switching.
The Chip Select pin used to drive the external flash memory over SPI is now set as output with initial level high, corresponding to a default inactive state for the SPI line.
Removed a hotfix that has been introduced in v1.0.0: the CAN driver used a critical section in order to avoid computation issues when scaling values. This has been shown to be connected with the FPU context and can now be removed as the root cause has been resolved.
Updated the Axivion configuration to use version
7.2.6
.Create the Axivion build directory before running the analysis.
The documentation build now treats warnings as errors.
Updated the doxygen configuration files to match the doxygen version that is shipped in the conda environment.
Switched the used C standard to C11.
The FreeRTOS specific implementations for the task and queue creation were moved into
os_freertos.c
andftask_freertos.c
.Greatly enhanced the robustness and code quality of the driver for Maxim analog front ends.
2.8.3. Deprecated
2.8.4. Removed
2.8.5. Fixed
The error message when
bms.json
had an invalid configuration always indicated an invalid analog front-end configuration, independently of what option was actually invalid configured. The error message now correctly points to the setting, that sets an invalid configuration.Fixed several MISRA-C violations and style guide violations.
Fixed the conda environment shell update script.
The signature of the FreeRTOS tasks was not correct and has been fixed to match
void TaskName(void *pvParameters)
.Explicitly cast the variables that are passed to the FreeRTOS task creation function.
Make
NULL_PTR
explicitly unsigned.Fixed product number for the used trace probe in our test setup.
Fixed incorrect values for GPIO measurement times in LTC module.
Cleaned up
spi
-module and added documentation. Removed unused enum (SPI_INTERFACE_e
).
2.9. [1.2.0] - 2021-10-21
2.9.1. Added
Added stubs for the Bender IR155 insulation monitoring device driver (i.e. driver is non-functional).
Extended the documentation with a render of the architecture against which the foxBMS 2 implementation is checked.
Added driver for I2C communication for MCU.
Added driver for I2C port expander.
Added driver for I2C humidity/temperature sensor.
Implemented feedback through auxiliary contacts for the contactor driver.
Debug LED is now toggled depending on system state (slow: okay, fast: error)
Added an option to install a pre-commit hook in the repository. The pre-commit hook runs the guidelines check.
Added a driver module that allows to use the enhanced PWM features of the MCU.
Adapted CAN module to receive/transmit messages either via CAN1 or CAN2.
Annotate maximum stack size in FreeRTOS so that debugger can catch this information.
Updated the hardware design files (e.g., schematics, layout, BOM and STEP file etc.) of the BMS-Master to
v1.1.1
.Added information on citing the project in
CFF
format.Added driver for interlock.
2.9.2. Changed
The measurement IC (
MIC
) module has been renamed to Analog Front-End (AFE
).build_all
andclean_all
need to run the Axivion related commands as last steps.The file content of the linker script for the elf file is now hashed using Unix-style line endings as this is more robust (e.g., downloaded zip files from GitHub releases).
Sort the SPI formats so that there are no conflicts between the configuration on SPI1 and SPI4 (Both are connected to the interface connector).
Control the pins of the interface for LTC AFEs with the port expander on the foxBMS 2 master board.
The documentation build defaults now only to
html
andspelling
, .i.e.,linkcheck
has been removed.Increased stack size of 10ms task to 5120 bytes (from 4096).
Declared large database entries as static, so that they are placed in the data segment to reduce the stack usage of the respective task.
2.9.3. Deprecated
2.9.4. Removed
Removed unused code in main build script.
2.9.5. Fixed
Fixed variable name typos in
moving_average.c
.A specific order of build/clean commands related to Axivion build and clean commands resulted in build errors. Now the build is early aborted if a wrong order is supplied and a descriptive error message is printed to stderr.
The documentation included a wrong statement about how to configure FreeRTOS.
Battery voltage is now transmitted correctly via CAN (ID: 0x222).
2.10. [1.1.2] - 2021-09-03
2.10.1. Added
A basic block diagram and description of a battery system and the voltages. and the currents that need to be measured have been included in the documentation.
Add helper script to run the library test build (
tests/variants/lib-build/lib-build.bat
).Updated the Axivion configuration to use version
7.2.3
.Added minimal documentation for Axivion setup.
Improved the Axivion configuration:
use
FAS_ASSERT
as assert macro in order to be compliant with the style guidefix some includes (library-inclusions and unnecessary inclusions)
adds the Axivion example for race condition analysis and a minimal configuration of entry points
updates
.axivion.preinc
with missing symbolsmakes cafeCC point to the right compiler library
excludes vendored code from analysis
disables all naming conventions (as they are currently not configured and thus horribly noisy)
disables the NoImplicitTypeConversion check as it is very noisy and better done with appropriate MISRA rules
detect unsafe variable access by defining task priorities
make Axivion less noisy, by disabling unused style-checks.
Made rules for loop-counter variables more strict.
enabling more detailed computation of findings (Abstract Interpretation in Static Semantic Analysis).
2.10.2. Changed
Improved the code quality of the module
foxmath
so that it is MISRA-compliant (Section 4.22).Refactored
cc-options
parsing to separate tool to simplify the TI ARM CGT compiler tool.
2.10.3. Deprecated
2.10.4. Removed
2.10.5. Fixed
When HALCoGen was not available, the Waf tool nevertheless tried to set the respective include path, which lead to exception in Python. This has been fixed by not trying to set the include path when HALCoGen is not available.
2.11. [1.1.1] - 2021-08-06
2.11.1. Added
All measurement values are now invalidated after startup to prevent invalid data on CAN.
Add a script for VS Code detection.
Added signal data for string related CAN messages
2.11.2. Changed
2.11.3. Deprecated
2.11.4. Removed
2.11.5. Fixed
fixed bug, that multiplexed cell voltages 2+3 were transmitted incorrectly via CAN (
foxBMS_CellVoltage
)fixed bug, that current limits were transmitted incorrectly via CAN (
foxBMS_LimitValues
)
2.12. [1.1.0] - 2021-07-29
foxBMS 2 now defaults to Code Composer Studio 10.3.1 in order to build
the binaries. If an older version of the compiler should be used, it can be
configured in conf/env/paths_win32.txt
. For installation instructions
see Section 3.3.1.
foxBMS 2 now ships with a new conda environment 2021-08-arctic-fox
and the
local conda environment needs to be updated.
2.12.1. Added
Diagnosis entries can now be configured specifically for each LTC6813-1 instance.
Endianness is now configurable in CAN module.
Add number of balanced cells in each string to database entry
DATA_BLOCK_ID_BALANCING_CONTROL
.Added a built-in self-test for the database module that writes and reads an entry during startup of the system.
Added a helper tool for the maintenance of the list of licenses in the conda environment.
Added a helper macro for the generation of array initializers (
REPEAT_U()
).Documented how to use Ozone to show the location of a failed assertion.
Cell voltages and temperatures are each stored in one array containing all values. Added database helper functions to get string, module or cell/sensor number from index in the global array.
Added a block diagram of the foxBMS 2 master hardware.
Added a SPI API function that allows to switch the functional state (GIO or SPI) of a SPI pin of the MCU.
Added testing for different versions of TI CCS (versions
10.2.1
,10.3.0
,10.3.1
and10.4.0
).Add fallback compiler detection.
Added a link to foxBMS project website with acknowledgment information:
List of funded projects foxBMS has received funding from
Instructions on how to reference to foxBMS 2
Added handling of I2C multiplexers to the Maxim monitoring IC driver.
Added a flash tool to the Waf toolchain. It is based on SEGGER J-Flash and can be invoked by calling
waf install_bin
or running theFlash:Binary
task incode
.Added a short note on the installation of PEAK-Drivers (for CAN communication) to the installation manual.
Added a section on testing the setup of the toolchain.
Added configurable reaction type, delay and severity for each diagnosis entry.
Configuration of failures, that lead to a transition to the error state is now done by configuring the severity of the respective diagnosis entry to
DIAG_FATAL_ERROR
. The handling of the timing delay to transition into error state is done by the BMS module.Implemented CAN messages defined in .dbc file. Only stubs are implemented for some CAN messages respectively some signals.
Documented workarounds that have to be applied to HALCoGen.
2.12.2. Changed
The schematic of the BMS-Master has been updated (
v1.0.2
).The new default compiler set in
conf/env/paths_win32.txt
is now TI ARM CGT v20.2.4.LTS (shipped with CCS10.3.1
).Reorganized the compiler tests in
tests/ccs/*
.Updated the development conda environment to
2021-06-arctic-fox
. Please run theconda-update-env.bat
script in order to update your local environment.CAN callback functions are now defined in separate files to increase readability.
Ring buffer for CAN RX was replaced by a FreeRTOS queue. A DIAG entry was added that detects if the queue is full when trying to add an element.
Updated the black configuration to match the new python version (
Python 3.9.5
).Improved the Ozone configuration so that an data breakpoint is set automatically on the symbol
fas_assertLocation.pc
.Run VS Code build tasks as process.
Use posix paths in VS Code configuration on all host platforms.
Improved the MISRA compliance of the monitoring driver for the family of Maxim ICs.
Pause the terminal when running
ide.bat
,waf.bat
andwaf.sh
in case the conda base or development environment could not be found. This is done to clearly point the user to the error message.Moved the struct storing the version of the software to a fixed location (address
0x003FFF40
) in flash memory.Replace all access to registers through the
IO_
functions with an access that keeps the volatile keyword on the register.Dropped the requirement for an internal library (
pyhameg
) in the HIL test.Updated the unit test framework
Ceedling
to version0.31.1
.Simplified the configuration of the Cppcheck tool.
Improved several function names in the
ftask
module.All required Queues are now created in one function (
FTSK_CreateQueues
) before the scheduler starts.Split the Waf compiler tool into smaller sub-tools to simplify maintenance and tests.
2.12.3. Deprecated
2.12.4. Removed
Completely removed dynamic allocation from FreeRTOS and reduced the (unused) heap size to 0.
Removed deprecated option
COLS_IN_ALPHA_INDEX
from the doxygen configurations.Disabled FEE driver in the HALCoGen project as it is currently unused.
Removed the hardware design files from the
hardware
directory and provided a URL under which the files can be found.
2.12.5. Fixed
The implementation of
DIAG_ErrorCurrentOnOpenString()
had an error where the wrong enum has been used leading to an assertion.Fixed bug in SOC/SOE counting module that extrapolated for cell voltages below lookup-table range
Fixed bug that caused current sensor scaling values to be only recalibrated after startup and not while recalibrating SOC/SOE values via look up tables when BMS is at rest.
A race condition between the SOC and SOE calculation lead to a mutual overwriting of the state estimation values.
Added documentation for the CAN module.
The regex to parse the
linkcheck
output in case of a broken URL did not match and raised an exception. The regex is now simpler and has a fallback option.void
functions used unnecessaryreturn;
at the end of the function. These returns have been removed.Sometimes
black
would fail to write to the cache pickle due to concurrent write processes of multipleblack
processes. This issue has been fixed by passing all files, that should be checked, at once toblack
.Fixed comparison error in SOF module that compared mA with A.
Some C-language guideline checks did not properly take C language global excludes into account.
Updated links in Section 4.
Fixed construction of the path variable in batch scripts.
2.13. [1.0.2] - 2021-04-30
2.13.1. Added
Added number of valid cell voltages and temperatures used for calculating minimum, maximum and average values to database entry
DATA_BLOCK_ID_MIN_MAX
.Added the build option
--skip-doxygen
to enable faster documentation builds, if an API documentation is not required/does not need to be updated.
2.13.2. Changed
Do no longer hard code the EOL for the files in the VS Code settings, instead just use the system EOL instead.
2.13.3. Deprecated
2.13.4. Removed
2.13.5. Fixed
Fixed typo in changelog. The LTC 6804-1 is basically an older version of the LTC 6811-1 (previously it stated wrongly LTC 6812-1).
linkcheck
andspelling
were not run when the documentation was built.The GUI searched for the wrong license file during startup routine and therefore failed to start successfully.
Improved the readability of the engine block schematic in the general software documentation.
Fixed an issue where the
waf.sh
-wrapper would not print the error message when the conda environment could not be found.Removed unused variables in build scripts.
Fixed readmes in the tools directory and its subdirectories.
2.14. [1.0.1] - 2021-04-16
2.14.1. Added
Added links to built versions of the documentation to the project README.
Added testing for different versions of TI CSS (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 6811-1).
Added the updated design files of the foxBMS 2 master v1.0.1.
2.14.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.
2.14.3. Deprecated
2.14.4. Removed
Removed external quality check in CI. This functionality has been replaced by the “guidelines” feature that is shipped with this repository.
2.14.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.15. [1.0.0] - 2021-04-01
2.15.1. Added
Added automated installer script for miniconda3.
Added automated installer script for MinGW64.
Added automated installer script for LLVM.
2.15.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.15.3. Deprecated
2.15.4. Removed
Removed several unused defines.
2.15.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.16. [0.3.0] - 2021-03-16
2.16.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.16.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.16.3. Deprecated
2.16.4. Removed
2.16.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.17. [0.2.0] - 2021-02-02
2.17.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 drivers have been added (driver fail 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.17.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 theCeedling
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.0
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.17.3. Deprecated
2.17.4. Removed
Removed the deprecated Anaconda extension from the list of recommended Visual Studio Code plugins that is shipped with the project.
2.17.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 theproject.yml
used byCeedling
.
2.18. [0.1.0] - 2020-11-17
Initial version