1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* SPDX-License-Identifier: BSD-2-Clause */ /* * Copyright (C) 2023 Raspberry Pi Ltd * * stitch_status.h - stitch control algorithm status */ #pragma once /* * Parameters for the stitch block. */ struct StitchStatus { uint16_t thresholdLo; uint8_t diffPower; double motionThreshold; };