Skip to content

Commit

Permalink
A2ltool version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielT committed Dec 30, 2021
1 parent 77ecf75 commit e2d90a5
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 14 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "a2ltool"
version = "1.0.1"
version = "1.1.0"
authors = ["Daniel Thaler <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
11 changes: 11 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# Changelog
## Version 1.1.0
- rename --insert-characteristic to --characteristic and --insert-measurement to --measurement.
The old nemaes remain as aliases, though they are not shown by --help
- add --measurement-range and --characteristic-range. Each of these takes a start address and
an end address and inserts all variables found in this range into the a2l file.
- add --measurement-regex and --characteristic-regex. Each of these takes a regex pattern.
Any variable matching the pattern will be inserted into the a2l file.
Example: [...] --characteristic-regex "TuningData" [...] would insert TuningData1 and TuningData2, and also DefaultTuningData
Example: [...] --measurement-regex "^TestVar\\.\_0\_.*" [...] would insert TestVar.\_0_.member, but not TestVar.\_1_.member
- Bugfix: the output path is no longer restricted to valid utf-8

## Version 1.0.1
- fix a bug where referring to array elements using angle brackets (array[0]) did not work corrctly
- fix a bug in --insert-characteristic and --insert-measurement where these could only reference variables, but not array elements or struct members
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ The consumer of the a2l file typically allows online calibraction over a protoco
The a2l file format is specified by ASAM and is formally called ASAM MCD-2 MC.

## Project Status
The Project appears to be done: all planned features are implemented and there are no known bugs.

With a2ltool version 1.0 all initially planned features were fully implemented.
Version 1.1.0 brings some new features that go beyond the initial plan - see the changelog.

0 comments on commit e2d90a5

Please sign in to comment.