sc7-testo-firmware/include/probe.h
true 36a55a865b Fix diode check limits, allow for two-mode continuity limit
D1 has changed to a 5V1 zener and is loading the circuit a little bit. Adjusted voltage based on tested value on prototype. This value may differ on production units so expect this to possibly change.
2023-10-31 19:50:30 -07:00

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 */