From a2e881aa7d5b57fd4722a14e81c391eed9b3962e Mon Sep 17 00:00:00 2001 From: Hamish Knox Date: Sun, 12 Dec 2021 17:50:13 +0000 Subject: [PATCH] Package for v1.0.2 --- README.md | 4 ++-- setup.cfg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4bcded1..b8c1ed1 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ The data is structured as follows: `dataLength`: The number of data bytes. -`data`: The data bytes in an array. +`data`: The data bytes in an array of strings. `T/R`: It is assumed that this is transmit/receive, but so far it has only been observed as `R`. @@ -53,7 +53,7 @@ These functions take in the packet data and format it into either a list, a dict ### `_extractDataFromPacket(packet)` -This function takes a packet array and returns the data bytes. It does this by removing all known non-data bytes, which is a terrible way to do it. This function should be updated to extract it using the included `dataLength` byte. +This function takes a packet array and returns the data bytes as an array of strings. It does this by removing all known non-data bytes, which is a terrible way to do it. This function should be updated to extract it using the included `dataLength` byte. ### `_fileToList(file)` diff --git a/setup.cfg b/setup.cfg index b189452..518f0d2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = canLogParse -version = 1.0.1 +version = 1.0.2 author = Hamish Knox author_email = hrjkknox@gmail.com description = A tool to import and format data from Kvaser CAN files when you dont have a DBC file.