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.
26 lines
586 B
26 lines
586 B
/*
|
|
* msp_wire_sensor.h
|
|
*
|
|
* Created on: Jul 29, 2024
|
|
* Author: akeguo
|
|
*/
|
|
|
|
#ifndef INC_MSP_MSP_WIRE_SENSOR_H_
|
|
#define INC_MSP_MSP_WIRE_SENSOR_H_
|
|
|
|
|
|
//拉线传感器
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "bsp_MB_host.h"
|
|
#include "stdio.h"
|
|
#include "BSP/bsp_UART.h"
|
|
#include "usart.h"
|
|
#include "gpio.h"
|
|
void decode_Length(uint8_t *buffer, uint16_t length);
|
|
void read_wire_sensor_length();
|
|
void wire_sensor_intialize(struct UARTHandler* Handler);
|
|
extern int32_t* Desulfurizer_Wire_Length;
|
|
|
|
extern int32_t *Desulfurizer_Thickness;
|
|
#endif /* INC_MSP_MSP_WIRE_SENSOR_H_ */
|
|
|