Skip to content

Commit

Permalink
Merge pull request #463 from openxc/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
GenoJAFord authored Sep 16, 2020
2 parents bf55d18 + 003ac3d commit fb8392b
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.mkd
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# OpenXC Vehicle Interface Firmware Changelog

## v8.1.0
* BREAKING: VI-Firmware 8.0.0 is not backwards compatable due to stitched diagnostic responses and must be used with OpenXC-Python 2.1.0 or greater.
* Fix: Crash with C5 Ble
* Fix: Modem Configuration fixed set proper baud rate for C5 Cellular
* Fix: Updates to ISOTP and UDS libraries to support diagnostic repsonse stitch release
* Feature: Large Diagnostic Responses are now passed up as smaller messages and stitched by clients
* Feature: Vin messages added to Emulator mode
* Feature: Sonarqube support added

## v8.0.0
* BREAKING: This version requires updates to the virtual machine. 'vagrant up --provision' must be run after 'git pull'.
* BREAKING: VI-Firmware 8.0.0 is not backwards compatable due to memory management updates and must be used with OpenXC-Python 2.0.0 or greater.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ OpenXC Vehicle Interface Firmware

.. image:: /docs/_static/logo.png

:Version: 8.0.0
:Version: 8.1.0
:Web: http://openxcplatform.com
:Documentation: http://vi-firmware.openxcplatform.com
:Source: http://github.com/openxc/vi-firmware
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
# built documents.
#
# The short X.Y version.
version = '8.0.0'
version = '8.1.0'
# The full version, including alpha/beta/rc tags.
release = '8.0.0'
release = '8.1.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ OpenXC Vehicle Interface Firmware

.. image:: /_static/logo.png

:Version: 8.0.0
:Version: 8.1.0
:Web: http://openxcplatform.com
:Documentation: http://vi-firmware.openxcplatform.com
:Source: http://github.com/openxc/vi-firmware
Expand Down
2 changes: 1 addition & 1 deletion script/bootstrap/ci-requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
openxc==2.0.0
openxc==2.1.0
9 changes: 9 additions & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ $(error You do not have the necessary openxc-python installed: openxc-python $(T
endif
endif

# Verify signals.cpp version
ifneq ($(wildcard signals.cpp),)
Signals_Version = $(shell grep -Po '(?<=Generated\sfor\sv)\d+\.\S+(?=\sof\sthe\sOpenXC\sVI\sfirmware\.)' signals.cpp)
Firmware_Signals_Version = $(shell grep -Po '(?<=Signals:\s)\d+\.\S+' Versions)
ifneq ($(Signals_Version),$(Firmware_Signals_Version))
$(error You are using an invalid signals.ccp version ($(Signals_Version)), This firmware supports ($(Firmware_Signals_Version)))
endif
endif

COLORS_AVAILABLE = $(shell command -v tput >/dev/null 2>&1; echo $$?)
ifeq ($(COLORS_AVAILABLE),0)
RED="$${txtbld}$$(tput setaf 1)"
Expand Down
1 change: 1 addition & 0 deletions src/Versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Signals: 7.x
2 changes: 1 addition & 1 deletion src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ openxc::telitHE910::TelitDevice telitDevice = {
openxc::config::Configuration* openxc::config::getConfiguration() {
static openxc::config::Configuration CONFIG = {
messageSetIndex: 0,
version: "8.0.0",
version: "8.1.0",
platform: PLATFORM,
environmentMode: ENVIRONMENT_MODE,
payloadFormat: PayloadFormat::DEFAULT_OUTPUT_FORMAT,
Expand Down
2 changes: 1 addition & 1 deletion src/libs/openxc-message-format
Submodule openxc-message-format updated 2 files
+49 −0 JSON.mkd
+2 −0 README.md
2 changes: 1 addition & 1 deletion src/libs/uds-c
Submodule uds-c updated 1 files
+1 −1 deps/isotp-c

0 comments on commit fb8392b

Please sign in to comment.