You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
423 B
20 lines
423 B
|
2 weeks ago
|
/*
|
||
|
|
* fsm.h
|
||
|
|
*
|
||
|
|
* Created on: Oct 18, 2024
|
||
|
|
* Author: akeguo
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef INC_LOGIC_H_
|
||
|
|
#define INC_LOGIC_H_
|
||
|
|
#include "stdint.h"
|
||
|
|
#include "BSP/bsp_UART.h"
|
||
|
|
#include "main.h"
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include "DLT/DLTuc.h"
|
||
|
|
void fke_lai_fen_modbus_intialize(struct UARTHandler *Handler);
|
||
|
|
void klf_can_controller_intialize(FDCANHandler *Handler);
|
||
|
|
void klf_send(char*buf,char length);
|
||
|
|
void clf_loop();
|
||
|
|
#endif /* INC_LOGIC_H_ */
|