18 lines
273 B
C
18 lines
273 B
C
//
|
|
// Created by Артём Чамайкин on 20.07.2024.
|
|
//
|
|
|
|
#ifndef EDCAN_CONFIG_H
|
|
#define EDCAN_CONFIG_H
|
|
|
|
#define DEVICE_ID 0x20
|
|
#define FWVER 1
|
|
//#define ED_CAN1
|
|
#define ED_CAN2
|
|
|
|
extern CAN_HandleTypeDef hcan2;
|
|
#define ED_CAN_INSTANCE hcan2
|
|
|
|
|
|
#endif //EDCAN_CONFIG_H
|