zhyinch
2020-07-09 f8b2fa433d03144490a1e887f3ffb56ca8fad97d
Src/OnChipDevices/ADC.c
@@ -1,6 +1,6 @@
#include "ADC.h"
#include "main.h"
static uint16_t Get_ADC_Value()
uint16_t Get_ADC_Value()
{
HAL_ADC_Start(&hadc);
 HAL_ADC_PollForConversion(&hadc, 10); 
@@ -29,6 +29,8 @@
      last_value = 100;
   if(last_value<0)
      last_value = 0;
}else{
   last_value=0;
}
   return last_value;   
}