LDF Language support for Python
Project description
LDF Parser
This tool is able parse LIN Description Files, retrieve signal names and frames from them, as well as encoding messages using frame definitions and decoding them.
Example
import ldfparser
# Load LDF
ldf = ldfparser.LDF(path = "network.ldf")
frame = ldf.frame('Frame_1')
# Get baudrate from LDF
print(ldf.baudrate)
# Encode signal values into frame
message = frame.raw({"Signal_1": 123, "Signal_2": 0})
print(binascii.hexlify(message))
# >> 0x7B00
# Decode message into dictionary of signal names and values
received = bytearray([0x7B, 0x00])
print(frame.parse(received))
# >> {"Signal_1": 123, "Signal_2": 0}
# Encode signal values through converters
message = frame.data({"MotorRPM": 100, "FanState": "ON"}, ldf.converters)
print(binascii.hexlify(message))
# >> 0xFE01
Features
-
Semantic validation of LDF files
-
Retrieve header information (version, baudrate)
-
Retrieve Signal and Frame information
-
Retrieve Signal encoding types and use them to convert values
Currently not supported
-
Signals longer than 16 bits
-
Ascii and BCD signal values
-
Node attributes
-
Scheduling table
-
Diagnostics
Installation
Install via pip install ldfparser
Credits
Inspired by uCAN-LIN LinUSBConverter, specifically the LDF parsing mechanism via Lark
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ldfparser-0.4.0.tar.gz
(8.5 kB
view hashes)
Built Distributions
ldfparser-0.4.0-py3.6.egg
(18.9 kB
view hashes)
ldfparser-0.4.0-py3-none-any.whl
(10.7 kB
view hashes)
Close
Hashes for ldfparser-0.4.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ea922cd8bb93c39a056cfb8fde678f2f5ff360eda4eafc4914661a6ccca0edb |
|
MD5 | d559459c3f9e86d2fb777d7fe95f2c3b |
|
BLAKE2b-256 | 60ebc7dc1c32769046ef9a20ff2f11f590d0ef7601abbebca9f5ac089e83a45b |