2022-07-13 23:14:46 -07:00
|
|
|
#include "port_shared.h"
|
|
|
|
|
|
|
|
// board-specific stuff shared between bootloader and firmware
|
|
|
|
|
2023-03-15 18:07:31 -07:00
|
|
|
static const CANConfig canConfig500 =
|
2022-07-13 23:14:46 -07:00
|
|
|
{
|
|
|
|
CAN_MCR_ABOM | CAN_MCR_AWUM | CAN_MCR_TXFP,
|
|
|
|
/*
|
2023-01-23 11:23:14 -08:00
|
|
|
For 24MHz http://www.bittiming.can-wiki.info/ gives us Pre-scaler=3, Seq 1=13 and Seq 2=2. Subtract '1' for register values
|
2022-07-13 23:14:46 -07:00
|
|
|
*/
|
2023-01-23 11:23:14 -08:00
|
|
|
CAN_BTR_SJW(0) | CAN_BTR_BRP(2) | CAN_BTR_TS1(12) | CAN_BTR_TS2(1),
|
2022-07-13 23:14:46 -07:00
|
|
|
};
|
2023-03-15 18:07:31 -07:00
|
|
|
|
|
|
|
const CANConfig& GetCanConfig() {
|
|
|
|
return canConfig500;
|
|
|
|
}
|