mirror of
https://github.com/Klipper3d/klipper.git
synced 2026-03-06 10:04:40 -07:00
Pass an overflow error back to the caller instead of invoking a shutdown(). Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
10 lines
228 B
C
10 lines
228 B
C
#ifndef __SOS_FILTER_H
|
|
#define __SOS_FILTER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
struct sos_filter;
|
|
int sos_filter_apply(struct sos_filter *sf, int32_t *pvalue);
|
|
struct sos_filter *sos_filter_oid_lookup(uint8_t oid);
|
|
|
|
#endif // sos_filter.h
|