charger/Core/Inc/can.h
Jasper v. Blanckenburg 1cbfd28288 Initial commit
This should be the state of the code from the end of the FT23 season
2024-07-11 21:03:57 +02:00

22 lines
300 B
C

/*
* can.h
*
* Created on: 21.06.2023
* Author: max
*/
#ifndef INC_CAN_H_
#define INC_CAN_H_
#include "stm32h7xx_hal.h"
#define CAN_ID_SLAVE_STATUS_BASE 0x080
#define CAN_ID_CHARGER_ACTIVE 0x200
void initCan(FDCAN_HandleTypeDef *hcan);
#endif /* INC_CAN_H_ */