change directory structure, using normed naming scheme

This commit is contained in:
2024-11-22 20:32:12 +01:00
parent 4a7b54acd2
commit 105e91f36c
230 changed files with 1384054 additions and 0 deletions

22
Software/Core/Inc/can.h Normal file
View File

@ -0,0 +1,22 @@
/*
* can.h
*
* Created on: 21.06.2023
* Author: max
*/
#ifndef INC_CAN_H_
#define INC_CAN_H_
#include "stm32h7xx_hal.h"
#define CAN_ID_AMS_STATUS 0x00A
#define CAN_ID_AMS_IN 0x00B
#define CAN_ID_SLAVE_STATUS_BASE 0x080
#define CAN_ID_CHARGER_ACTIVE 0x200
void initCan(FDCAN_HandleTypeDef *hcan);
#endif /* INC_CAN_H_ */