34 lines
691 B
C
34 lines
691 B
C
|
|
//-------------------------------------------------------------------------------
|
||
|
|
// File Name: canwork.h
|
||
|
|
// Brief:
|
||
|
|
// Version: 1.0.0
|
||
|
|
// Create Date: 2024/10/17
|
||
|
|
// Create by: W.X
|
||
|
|
// Copyright:
|
||
|
|
// TIANJIN GETONAGAIN TECHNOLOGY CO., LIMITED
|
||
|
|
// All rights reserved.
|
||
|
|
//
|
||
|
|
// Modify by: W.X
|
||
|
|
// Modify Date: 2024/10/17
|
||
|
|
//-------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#ifndef APP_FUNC_CANWORK_H_
|
||
|
|
#define APP_FUNC_CANWORK_H_
|
||
|
|
|
||
|
|
#include "config.h"
|
||
|
|
#include "workctrl.h"
|
||
|
|
#include "canctrl.h"
|
||
|
|
#include "controlbus.h"
|
||
|
|
#include "sewhdcontrol.h"
|
||
|
|
|
||
|
|
#if (CONTROL_BUS == COMM_CAN)
|
||
|
|
|
||
|
|
|
||
|
|
void InitCAN(void);
|
||
|
|
void CanBusTask(void);
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|
||
|
|
#endif /* APP_FUNC_CANWORK_H_ */
|