You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
328 B
14 lines
328 B
#pragma once
|
|
|
|
#include "port.h"
|
|
#include "systick.h"
|
|
|
|
#define AVERAGE_TABLE_SIZE 1
|
|
|
|
float adc_get_value_pa2(void);
|
|
float adc_get_value_pb8(void);
|
|
float adc_get_value_pb9(void);
|
|
|
|
float adc_get_value_pa2_filter(float factor);
|
|
float adc_get_value_pb8_filter(float factor);
|
|
float adc_get_value_pb9_filter(float factor);
|