From 3e165b6f13bfaf66385d857819cacff6e4d6f37c Mon Sep 17 00:00:00 2001
From: zhyinch <zhyinch@gmail.com>
Date: 星期六, 20 六月 2020 22:31:03 +0800
Subject: [PATCH] 时间同步完成,多基站有问题,时间不对

---
 Src/OnChipDevices/ADC.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Src/OnChipDevices/ADC.c b/Src/OnChipDevices/ADC.c
index d662e86..de06e6d 100644
--- a/Src/OnChipDevices/ADC.c
+++ b/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); 
@@ -15,7 +15,7 @@
 static uint8_t first=1;
 	HAL_GPIO_WritePin(GPIOB, BAT_MEAS_GND_Pin, GPIO_PIN_RESET);
 	bat_volt = (float)Get_ADC_Value()/621;  //(value/4096*3.3*2-3.5)/0.7
-	HAL_GPIO_WritePin(GPIOB, BAT_MEAS_GND_Pin, GPIO_PIN_RESET);
+	HAL_GPIO_WritePin(GPIOB, BAT_MEAS_GND_Pin, GPIO_PIN_SET);
 	if(bat_volt>=3.5)
 	{
 		if(first)

--
Gitblit v1.9.3