├── .gitignore ├── BMS-Extension ├── foxBMS_BMS-Extension.brd ├── foxBMS_BMS-Extension.pdf ├── foxBMS_BMS-Extension.sch └── foxBMS_BMS-Extension_BOM.xlsx ├── BMS-Interface ├── foxBMS_BMS-Interface.brd ├── foxBMS_BMS-Interface.pdf ├── foxBMS_BMS-Interface.sch └── foxBMS_BMS-Interface_BOM.xlsx ├── BMS-Master ├── foxBMS_BMS-Master.brd ├── foxBMS_BMS-Master.pdf ├── foxBMS_BMS-Master.sch └── foxBMS_BMS-Master_BOM.xlsx ├── BMS-Slave ├── foxBMS_BMS-Slave_12cell.brd ├── foxBMS_BMS-Slave_12cell.pdf ├── foxBMS_BMS-Slave_12cell.sch └── foxBMS_BMS-Slave_12cell_BOM.xlsx ├── CHANGELOG.md ├── LICENSE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | DESCRIPTION 2 | eagle.epf 3 | *.b#* 4 | *.s#* 5 | *.l#* -------------------------------------------------------------------------------- /BMS-Extension/foxBMS_BMS-Extension.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxBMS/foxBMS-hardware/190b2dd54bf8e9d83080b02cd4f05b4f4bcb2e71/BMS-Extension/foxBMS_BMS-Extension.pdf -------------------------------------------------------------------------------- /BMS-Extension/foxBMS_BMS-Extension_BOM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxBMS/foxBMS-hardware/190b2dd54bf8e9d83080b02cd4f05b4f4bcb2e71/BMS-Extension/foxBMS_BMS-Extension_BOM.xlsx -------------------------------------------------------------------------------- /BMS-Interface/foxBMS_BMS-Interface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxBMS/foxBMS-hardware/190b2dd54bf8e9d83080b02cd4f05b4f4bcb2e71/BMS-Interface/foxBMS_BMS-Interface.pdf -------------------------------------------------------------------------------- /BMS-Interface/foxBMS_BMS-Interface_BOM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxBMS/foxBMS-hardware/190b2dd54bf8e9d83080b02cd4f05b4f4bcb2e71/BMS-Interface/foxBMS_BMS-Interface_BOM.xlsx -------------------------------------------------------------------------------- /BMS-Master/foxBMS_BMS-Master.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxBMS/foxBMS-hardware/190b2dd54bf8e9d83080b02cd4f05b4f4bcb2e71/BMS-Master/foxBMS_BMS-Master.pdf -------------------------------------------------------------------------------- /BMS-Master/foxBMS_BMS-Master_BOM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxBMS/foxBMS-hardware/190b2dd54bf8e9d83080b02cd4f05b4f4bcb2e71/BMS-Master/foxBMS_BMS-Master_BOM.xlsx -------------------------------------------------------------------------------- /BMS-Slave/foxBMS_BMS-Slave_12cell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxBMS/foxBMS-hardware/190b2dd54bf8e9d83080b02cd4f05b4f4bcb2e71/BMS-Slave/foxBMS_BMS-Slave_12cell.pdf -------------------------------------------------------------------------------- /BMS-Slave/foxBMS_BMS-Slave_12cell_BOM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxBMS/foxBMS-hardware/190b2dd54bf8e9d83080b02cd4f05b4f4bcb2e71/BMS-Slave/foxBMS_BMS-Slave_12cell_BOM.xlsx -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # foxBMS Change Log -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # foxBMS Hardware and Documentation License 2 | 3 | Copyright (c) 2010-2017, Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V. 4 | All rights reserved. 5 | 6 | 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/. 7 | 8 | We kindly request you to use one or more of the following phrases to refer to foxBMS in your hardware, software, documentation or advertising materials: 9 | 10 | * "This product uses parts of foxBMS" 11 | * "This product includes parts of foxBMS" 12 | * "This product is derived from foxBMS" 13 | 14 | If you use foxBMS in your products, we encourage you to contact us at: 15 | 16 | CONTACT INFORMATION 17 | Fraunhofer IISB 18 | Schottkystrasse 10 19 | 91058 Erlangen, Germany 20 | info@foxbms.org 21 | www.foxbms.org 22 | 23 | # foxBMS Software License 24 | 25 | Copyright (c) 2010-2017, Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V. 26 | All rights reserved. 27 | 28 | **BSD 3-Clause License** 29 | 30 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 31 | 32 | 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 33 | 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 34 | 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 35 | 36 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 37 | 38 | We kindly request you to use one or more of the following phrases to refer to foxBMS in your hardware, software, documentation or advertising materials: 39 | 40 | * "This product uses parts of foxBMS" 41 | * "This product includes parts of foxBMS" 42 | * "This product is derived from foxBMS" 43 | 44 | If you use foxBMS in your products, we encourage you to contact us at: 45 | 46 | CONTACT INFORMATION 47 | Fraunhofer IISB 48 | Schottkystrasse 10 49 | 91058 Erlangen, Germany 50 | info@foxbms.org 51 | www.foxbms.org 52 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # foxBMS 2 | 3 | foxBMS is a free, open and flexible development environment to design battery 4 | management systems. It is the first modular open source BMS development 5 | platform. 6 | 7 | ## foxBMS Project Setup 8 | The foxBMS project consists of several repositories. 9 | 10 | The foxConda-installer repository contains the installer for the foxConda 11 | environment. This environment provides all the tools necessary to generate the 12 | documentation, compile the code for the MCUs and flash the generated binaries on 13 | the MCUs (e.g., Python, git, GCC). 14 | 15 | The starting point to get foxBMS is the foxBMS-setup 16 | repository (https://github.com/foxBMS/foxBMS-setup), which contains 17 | the general setup files for the foxBMS project. It includes a setup script 18 | (bootstrap.py) which clones all the other needed repositories. The needed 19 | documentation will be generated automatically after these repositories have been 20 | cloned. The generated documentation is found in the directory ./build. 21 | After the bootstrap step, the top project directory (foxBMS-setup) structure 22 | looks like this: 23 | 24 | - foxBMS-setup