I have one CAN standard 2.0A frame which contain 8 Bytes of DATA. e.g CAN Frame Data "00 CA 22 FF 55 66 AA DF" (8 Bytes) Now I want to check how many stuff bits would be add in this CAN frame(bit stuffing). standers formula to calculate the Worst case bit stuffing scenario is as following: 64+47+[(34+64-1)/4] ->64 :: Data bits and 47 :: overhead bits 2.0A
How to calculate real stuffed bits in this sample CAN message ?? Any comment, suggestion would be warmly welcome.