mirror of https://github.com/rusefi/wideband.git
parent
660dad473c
commit
d9b83379f3
|
@ -5,5 +5,8 @@
|
|||
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),
|
||||
};
|
||||
|
|
|
@ -35,6 +35,8 @@
|
|||
|
||||
/*
|
||||
* HAL driver system settings.
|
||||
* TL,DR: we run at 48MHz.
|
||||
* It's not possible to run at 72 on HSI because of the PLL's limited configuration options, so 48MHz right now.
|
||||
*/
|
||||
#define STM32_NO_INIT FALSE
|
||||
#define STM32_HSI_ENABLED TRUE
|
||||
|
|
|
@ -5,5 +5,8 @@
|
|||
const CANConfig canConfig500 =
|
||||
{
|
||||
CAN_MCR_ABOM | CAN_MCR_AWUM | CAN_MCR_TXFP,
|
||||
0 // TODO: set bit timing! correctly!
|
||||
/*
|
||||
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),
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue