forked from achamaikin/CCSModuleSW30Web
40 lines
689 B
C
Executable File
40 lines
689 B
C
Executable File
/* USER CODE BEGIN Header */
|
|
|
|
/* USER CODE END Header */
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __CAN_H__
|
|
#define __CAN_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "main.h"
|
|
|
|
/* USER CODE BEGIN Includes */
|
|
|
|
/* USER CODE END Includes */
|
|
|
|
extern CAN_HandleTypeDef hcan1;
|
|
|
|
extern CAN_HandleTypeDef hcan2;
|
|
|
|
/* USER CODE BEGIN Private defines */
|
|
|
|
/* USER CODE END Private defines */
|
|
|
|
void MX_CAN1_Init(void);
|
|
void MX_CAN2_Init(void);
|
|
|
|
/* USER CODE BEGIN Prototypes */
|
|
|
|
/* USER CODE END Prototypes */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __CAN_H__ */
|
|
|