sc7-testo-firmware/include/probe.h

24 lines
301 B
C

/*
* probe.c: helping you probe things
*
* file creation: 20231021 1717
*/
#ifndef _INC_PROBE_H
#define _INC_PROBE_H
#include <stdint.h>
void probe_mode_switch(uint8_t mode);
void probe_measure();
void probe_set_thresh(uint8_t set);
uint8_t probe_get_thresh();
#endif /* _INC_PROBE_H */