This commit is contained in:
v0stap
2026-04-05 11:31:20 +02:00
commit 78e6a1b8aa
254 changed files with 175905 additions and 0 deletions

16
DBW_V2/Core/Inc/adc.h Normal file
View File

@@ -0,0 +1,16 @@
/*
* adc.h
*
* Created on: Sep 6, 2017
* Author: dmitrijs
*/
#ifndef ADC_H_
#define ADC_H_
void Adc_Init(void);
unsigned short LPF(unsigned short lpf_c, unsigned short value,
unsigned short old_value);
unsigned short Adc_Read(unsigned char ch);
#endif /* ADC_H_ */