From the CAN DBC file im taking few Can Messages and assigning values to each signal of Can Messages and then encoding it to send the can message.
for each signal, data is encoded in the different(few examples are listed below)
Data1--> b'\x00\x00d\x01P\x00\x00\x01'
Data2--> b'\x01\x81\x0f\x11\xc8\x00\x00\x00'
Data3--> b'\x00\x00d\x01P\x00\x00\x01'
My doubt is.. what is the meaning of x00d,x01P,x00d these data, what dose it denotes (what is P and d).
please let me know why data byte is in such format (like: x00d,x01P,x00d) and how to get the data as normal/usual format(like:Data2--> b'\x01\x81\x0f\x11\xc8\x00\x00\x00' )