14 lines
273 B
C
Raw Normal View History

2020-10-31 21:25:49 +01:00
#ifndef _FRONTEND_H_
#define _FRONTEND_H_
#include <stdint.h>
#include <adc.h>
void frontendInit();
void frontendAdcCallback(ADC_HandleTypeDef* hadc);
void frontendEnable();
void frontendDisable();
void frontendSetThreshold(int32_t threshold);
2020-10-31 21:25:49 +01:00
#endif // _FRONTEND_H_