mirror of
https://github.com/andreili/klipper.git
synced 2025-08-24 03:44:06 +02:00
Implement MCU features that enable using an adc to stop an axis Signed-off-by: Gareth Farrington <gareth@waves.ky>
11 lines
289 B
C
11 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
|