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.
22 lines
626 B
22 lines
626 B
|
3 weeks ago
|
/*
|
||
|
|
* msp_ground_management.h
|
||
|
|
*
|
||
|
|
* Created on: 2025年11月25日
|
||
|
|
* Author: akeguo
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef BASE_INC_MSP_MSP_GROUND_MANAGEMENT_H_
|
||
|
|
#define BASE_INC_MSP_MSP_GROUND_MANAGEMENT_H_
|
||
|
|
#include "bsp_MB_host.h"
|
||
|
|
#include "bsp_Error.pb.h"
|
||
|
|
#include "bsp_ground_management.pb.h"
|
||
|
|
#include "bsp_Error_Detect.h"
|
||
|
|
extern void ground_management_intialize(struct UARTHandler *Handler);
|
||
|
|
extern void ground_management_intialize_with_slaveid(struct UARTHandler *Handler, int slave_id);
|
||
|
|
extern void ground_management_inquiry();
|
||
|
|
|
||
|
|
|
||
|
|
extern ground_management_struct *ground_management_value;
|
||
|
|
|
||
|
|
#endif /* BASE_INC_MSP_MSP_GROUND_MANAGEMENT_H_ */
|