mirror of
https://github.com/Klipper3d/klipper.git
synced 2026-01-05 06:17:48 -07:00
Implement MCU features that enable using an adc to stop an axis Signed-off-by: Gareth Farrington <gareth@waves.ky>
10 lines
289 B
C
10 lines
289 B
C
#ifndef __LOAD_CELL_PROBE_H
|
|
#define __LOAD_CELL_PROBE_H
|
|
|
|
#include <stdint.h> // uint8_t
|
|
|
|
struct load_cell_probe *load_cell_probe_oid_lookup(uint8_t oid);
|
|
void load_cell_probe_report_sample(struct load_cell_probe *lce
|
|
, int32_t sample);
|
|
|
|
#endif // load_cell_probe.h
|