diff options
author | Zac Nelson <znelson1@ford.com> | 2016-09-14 09:52:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-14 09:52:13 -0700 |
commit | 4e7375321a029a32989bc7546329c385e6edb80f (patch) | |
tree | e9e162092adec9a51af47db41d755c12892f6c87 /CHANGELOG.mkd | |
parent | 50722a2a61106b7b8eb0774edf53be3c1255cd59 (diff) |
Add support for multi-frame responses (#4)
* first test with multi-frame. storing data in handler. still need to free memory since using malloc.
* hardcode the IsoTpMessage payload size. copy the full multi-frame response into a complete isotpMessage once all frames have been received. otherwise, the returned isotpMessage is not complete.
* remove unnecessary debug statements.
* do not receive multi-frame message if it is larger than the payload buffer size.
* update changelog with multi-frame support
* fix the changelog version for proper semantic versioning. oops.
* move pointer intialization for testing purposes.
* add tests for multi-frame.
* try latest version of check
* fix syntax for version install.
* fix tests. no longer check for malloc pointer (not supported in Travis version of check.h - just test that flow control message has not been sent.
* add IsoTpMessage field for multi_frame. Need this upstream for doing timeout updates.
* add test multi_frame field.
Diffstat (limited to 'CHANGELOG.mkd')
-rw-r--r-- | CHANGELOG.mkd | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.mkd b/CHANGELOG.mkd index e7090942..e6fd5cc0 100644 --- a/CHANGELOG.mkd +++ b/CHANGELOG.mkd @@ -1,5 +1,10 @@ # ISO 15765-2 Support Library in C +## v0.2 + +* Add multi-frame support for diagnostic responses. An IsoTpMessage payload is + currently limited to 256 bytes. + ## v0.1 * Initial release |