This commit is contained in:
andrea
2025-12-08 16:43:26 +01:00
parent 3db6a38a2b
commit 43a9a9d480
117 changed files with 76544 additions and 44501 deletions

View File

@@ -0,0 +1,16 @@
/*
* adc.h
*
* Created on: Dec 8, 2025
* Author: user
*/
#ifndef INC_ADC_H_
#define INC_ADC_H_
#include "stm32f1xx_hal.h"
#define ADC_NUM_CHANNELS 5 // CH4..CH8
#define ADC_AVG_WINDOW 5 // 5 * 10ms = 50ms averaging window
void manageAdc(void);
void readAdc(void);
#endif /* INC_ADC_H_ */