mirror of https://github.com/rusefi/wideband.git
17 lines
459 B
C++
17 lines
459 B
C++
#include "port_shared.h"
|
|
|
|
// board-specific stuff shared between bootloader and firmware
|
|
|
|
static const CANConfig canConfig500 =
|
|
{
|
|
CAN_MCR_ABOM | CAN_MCR_AWUM | CAN_MCR_TXFP,
|
|
/*
|
|
For 48MHz http://www.bittiming.can-wiki.info/ gives us Pre-scaler=6, Seq 1=13 and Seq 2=2. Subtract '1' for register values
|
|
*/
|
|
CAN_BTR_SJW(0) | CAN_BTR_BRP(5) | CAN_BTR_TS1(12) | CAN_BTR_TS2(1),
|
|
};
|
|
|
|
const CANConfig& GetCanConfig() {
|
|
return canConfig500;
|
|
}
|