20 lines
424 B
C
20 lines
424 B
C
/*
|
|
* mazda_can.h
|
|
*
|
|
* Created on: Mar 17, 2022
|
|
* Author: v0stap
|
|
*/
|
|
|
|
#ifndef INC_HALTECH_H_
|
|
#define INC_HALTECH_H_
|
|
|
|
|
|
void Haltech_App (uint32_t id);
|
|
void Haltech_Send_Analog(uint32_t id);
|
|
void Haltech_Send_Digital1(uint32_t id);
|
|
void Haltech_Send_Digital2(uint32_t id);
|
|
void Haltech_Send_Keap_Alive(uint32_t id);
|
|
void Haltech_Write_Digital(can_msg_typedef *section);
|
|
|
|
#endif /* INC_HALTECH_H_ */
|