sick_dt35/User/component/user_math.h
2025-04-02 20:51:10 +08:00

20 lines
285 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
自定义的数学运算。
*/
#pragma once
#include <math.h>
#include <stdint.h>
#ifndef M_PI
#define M_PI 3.14159265358979323846f
#endif
/**
* @brief 用于计算ADC数据对应的距离mm
* @param adc_data
* @return
*/
float Adc_to_Distance(uint16_t adc_data);