Skip to content

Releases: JulianSchmid/dlt-parse-rs

v0.7.2 Added accessor to slice to SliceIterator

08 May 09:05
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.1...v0.7.2

Updated Readme Badges

24 Jan 07:32
Compare
Choose a tag to compare
v0.7.1

Update version to 0.7.1

Switched to MIT & Apache 2.0 license

23 Jan 23:19
Compare
Choose a tag to compare
v0.7.0

Switched to MIT & Apache 2.0 license

Support DLT Header only messages (+ add `DltPacketSlice::message_id_and_payload`)

23 Jan 22:23
Compare
Choose a tag to compare
  • DltPacketSlice::from_slice & storage::DltStorageReader now allow DLT packets that only consist of an header.
  • Added new method DltPacketSlice::message_id_and_payload that allows to get the message id together with the non verbose payload.
  • DltPacketSlice ::non_verbose_payload return type changed from &[u8] to Option<&[u8]> (only return Some if the packet is non_verbose and the length is big enough.

Updated URL to specification and added support for version 0

23 Jan 19:20
Compare
Choose a tag to compare

Corrected version check in `DltStorageReader`

23 Jan 20:13
Compare
Choose a tag to compare

DltStorageReader now also also verion 0 and not only version 1.

Added no-std & storage support and reworked errors

16 Nov 19:59
Compare
Choose a tag to compare
v0.4.0

Aligned storage header endianess with dlt viewer

Optimized slice interface & application id & context id type change

22 Aug 14:33
Compare
Choose a tag to compare
  • Marked slice methods as inline
  • Changed the types of the application id & context id from u32 to [u8;4] so they can be easier interpreted as chars
  • Extended check for DltNetworkType::UserDefined(u8) to only allow values from 0x7..=0xf. Previously 0..=0xf was allowed.

Minor: Added "extended_header" & "message_type" methods to DltPacketSlice

14 Jul 08:13
Compare
Choose a tag to compare

Minor: Added "extended_header" & "message_type" methods to DltPacketSlice

Extended Header: Message type information added

12 Jul 20:18
Compare
Choose a tag to compare

This release adds support for parsing & setting the message type informations in the extended header. Thanks to @marcelbuesing for the PR adding this functionality.