rbei-etas / busmaster

BUSMASTER is an Open Source Software tool to simulate, analyze and test data bus systems such as CAN. BUSMASTER was conceptualized, designed and implemented by Robert Bosch Engineering and Business Solutions (RBEI). Presently it is a joint project of RBEI and ETAS GmbH.
http://rbei-etas.github.com/busmaster/
GNU General Public License v3.0
950 stars 501 forks source link

bitrate83333 #1309

Open hairy11 opened 10 months ago

hairy11 commented 10 months ago

Would like to have added 83.333 kHz bit rate. This is 1.000 MHz / 6 add to two files

// cantype.h

define CAN_BT0_83KB 0x05 // 1000000 / ( 5.+1) / 2 = 83333

define CAN_BT1_83KB 0x1C

define CAN_BT01_83KB 0x05,0x1C

// and // CANControllerConfigDlg.cpp m_asBaudList[0].strName = "83"; m_asBaudList[0].dwBaud = 83 m_asBaudList[0].dwBTR0 = CAN_BT0_83KB; m_asBaudList[0].dwBTR1 = CAN_BT1_83KB;

I have a 25 year old MB mechanic, and the first vehicle he plugged this into had a CAN-B running at this speed. I gather there are are whole lot more, in that manufacturers range, that use this speed for their -B lines. MB W906 chassis, using the latest meatpi Ollie V2 Regards, hairy11