rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
efi_blt_ids.h
Go to the documentation of this file.
1// file efi_blt_ids.h
2
3// Note that an extended 29-bit CAN identifier is configured by OR-ing with mask 0x80000000.
4
5#ifndef BOOT_COM_CAN_BAUDRATE
6/** \brief Configure the desired CAN baudrate. */
7#define BOOT_COM_CAN_BAUDRATE (500000)
8#endif
9
10#ifndef BOOT_COM_CAN_RX_MSG_ID
11// PC or Android device doing the programming
12/** \brief Configure CAN message ID host->target. */
13#define BOOT_COM_CAN_RX_MSG_ID (0x10667 | 0x80000000)
14#endif
15
16#ifndef BOOT_COM_CAN_TX_MSG_ID
17// ECU talks this CAN is
18/** \brief Configure CAN message ID target->host. */
19#define BOOT_COM_CAN_TX_MSG_ID (0x107E1 | 0x80000000)
20#endif
21
22#ifndef BOOT_COM_CAN_EXT
23#define BOOT_COM_CAN_EXT true
24#endif