Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit a8b70be

Browse files
committed
Software:
* Toolchain: * none * Bugfixes: * Fixed PEC for commands ``ltc2_BC_cmdADOW_PUP_filtered_DCP0`` and ``ltc2_BC_cmdADOW_PDOWN_filtered_DCP0`` in the LTC driver. (``embedded-software/mcu-common/src/module/ltc/ltc.c``) * Enhancements: * none Hardware: * none Documentation: * Added supply current values to the specifications section of the 12 cell and 18 cell slaves. (``documentation/sphinx/hardware_documentation/specifications/specifications.rst``) * Updated year in copyright. * Fix typo in changelog entry for release 1.6.4. * Fix typos in docu section about monitored parameters (``monitored_parameters.rst``) ------------------------------------------------------------------------------
1 parent 333f277 commit a8b70be

File tree

304 files changed

+408
-347
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

304 files changed

+408
-347
lines changed

CHANGELOG.rst

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,39 @@
22
Changelog
33
=========
44

5+
**Release 1.6.5**
6+
7+
Software:
8+
9+
* Toolchain:
10+
11+
* none
12+
13+
* Bugfixes:
14+
15+
* Fixed PEC for commands ``ltc2_BC_cmdADOW_PUP_filtered_DCP0`` and
16+
``ltc2_BC_cmdADOW_PDOWN_filtered_DCP0`` in the LTC driver.
17+
(``embedded-software/mcu-common/src/module/ltc/ltc.c``)
18+
19+
* Enhancements:
20+
21+
* none
22+
23+
Hardware:
24+
25+
* none
26+
27+
Documentation:
28+
29+
* Added supply current values to the specifications section of the 12 cell and
30+
18 cell slaves.
31+
(``documentation/sphinx/hardware_documentation/specifications/specifications.rst``)
32+
* Updated year in copyright.
33+
* Fix typo in changelog entry for release 1.6.4.
34+
* Fix typos in docu section about monitored parameters (``monitored_parameters.rst``)
35+
36+
------------------------------------------------------------------------------
37+
538
**Release 1.6.4**
639

740
Software:
@@ -24,7 +57,7 @@ Software:
2457
(``batterysystem_cfg.c``)
2558
* Fixed initialization of variable ``ltc_balancing_feedback.value[]`` in
2659
``LTC_Initialize_Database()``. It was iterated over ``BS_NR_OF_BAT_CELLS``
27-
elements instead of BS_NR_OF_MODULES elements. (``ltc.c``)
60+
elements instead of ``BS_NR_OF_MODULES`` elements. (``ltc.c``)
2861
* added missing includes to wscripts for building common drivers and modules.
2962

3063
* Enhancements:

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# foxBMS Hardware and Documentation License
22

3-
Copyright (c) 2010-2020, Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.
3+
Copyright (c) 2010 - 2021, Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.
44
All rights reserved.
55

66
This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/.
@@ -22,7 +22,7 @@ www.foxbms.org
2222

2323
# foxBMS Software License
2424

25-
Copyright (c) 2010-2020, Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.
25+
Copyright (c) 2010 - 2021, Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.
2626
All rights reserved.
2727

2828
**BSD 3-Clause License**

compiler-flags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @copyright © 2010 - 2020, Fraunhofer-Gesellschaft zur Foerderung der
1+
# @copyright © 2010 - 2021, Fraunhofer-Gesellschaft zur Foerderung der
22
# angewandten Forschung e.V. All rights reserved.
33
#
44
# BSD 3-Clause License

cpplint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @copyright © 2010 - 2020, Fraunhofer-Gesellschaft zur Foerderung der
1+
# @copyright © 2010 - 2021, Fraunhofer-Gesellschaft zur Foerderung der
22
# angewandten Forschung e.V. All rights reserved.
33
#
44
# BSD 3-Clause License

documentation/doxygen/doxygen-primary.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = ""
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.6.4
41+
PROJECT_NUMBER = 1.6.5
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

documentation/doxygen/doxygen-primary_bare.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = ""
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.6.4
41+
PROJECT_NUMBER = 1.6.5
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

documentation/doxygen/doxygen-secondary.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = ""
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.6.4
41+
PROJECT_NUMBER = 1.6.5
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

documentation/doxygen/doxygen-secondary_bare.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = ""
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.6.4
41+
PROJECT_NUMBER = 1.6.5
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

documentation/sphinx/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4-
# @copyright © 2010 - 2020, Fraunhofer-Gesellschaft zur Foerderung der
4+
# @copyright © 2010 - 2021, Fraunhofer-Gesellschaft zur Foerderung der
55
# angewandten Forschung e.V. All rights reserved.
66
#
77
# BSD 3-Clause License
@@ -88,7 +88,7 @@
8888

8989
# General information about the project.
9090
project = u'foxBMS'
91-
copyright = u'2010–2020, Fraunhofer-Gesellschaft zur Förderung der \
91+
copyright = u'2010 – 2021, Fraunhofer-Gesellschaft zur Förderung der \
9292
angewandten Forschung e.V. All rights reserved. See license section for \
9393
further information'
9494

documentation/sphinx/general_information/licenses/licenses.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Licenses
1313
|foxbms| Software License
1414
~~~~~~~~~~~~~~~~~~~~~~~~~
1515

16-
|copy| 2010-2020, Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. All rights reserved.
16+
|copy| 2010 - 2021, Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. All rights reserved.
1717

1818
The |foxbms| embedded software and computer software are licensed under the BSD 3-Clause License.
1919

@@ -51,7 +51,7 @@ The |foxbms| embedded software and computer software are licensed under the BSD
5151
|foxbms| Hardware and Documentation License
5252
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5353

54-
|copy| 2010-2020, Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. All rights reserved.
54+
|copy| 2010 - 2021, Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. All rights reserved.
5555

5656

5757

0 commit comments

Comments
 (0)