AFBR-S50 API Reference Manual v1.5.6
AFBR-S50 Time-of-Flight Sensor SDK for Embedded Software
Loading...
Searching...
No Matches
core_cal.h
Go to the documentation of this file.
1/*************************************************************************/
37#ifndef CORE_CALIB_H
38#define CORE_CALIB_H
39
40/*!***************************************************************************
41 * @defgroup core_calib AFBR-S50 Explorer - Explorer calibration functions
42 * @ingroup explorer_app
43 * @brief AFBR-S50 Explorer - Explorer calibration functions
44 * @details Util functions for handling the calibration of Explorer devices
45 * @addtogroup core_calib
46 * @{
47 *****************************************************************************/
48
49#include "explorer_types.h"
50
51/*!***************************************************************************
52 * @brief Triggers a crosstalk calibration measurement sequence.
53 * @param argus The Argus device handler.
54 * @return Returns the \link #status_t status\endlink (#STATUS_OK on success).
55 *****************************************************************************/
57
58/*!***************************************************************************
59 * @brief Triggers a crosstalk calibration measurement sequence.
60 * @param argus The Argus device handler.
61 * @param targetRange The calibration target distance in meter and Q9.22
62 * format. Pass non-positive (0) value to execute
63 * relative calibration sequence only.
64 * @return Returns the \link #status_t status\endlink (#STATUS_OK on success).
65 *****************************************************************************/
67
68
70#endif /* CORE_CALIB_H */
This file is part of the AFBR-S50 Explorer Demo Application.
struct argus_hnd_t argus_hnd_t
Definition argus_def.h:284
int32_t q9_22_t
Signed fixed point number: Q9.22.
Definition fp_def.h:538
int32_t status_t
Type used for all status and error return values.
Definition argus_status.h:70
status_t ExplorerApp_ExecuteXtalkCalibrationSequence(argus_hnd_t *argus)
Triggers a crosstalk calibration measurement sequence.
Definition core_cal.c:67
status_t ExplorerApp_ExecuteOffsetsCalibrationSequence(argus_hnd_t *argus, q9_22_t targetRange)
Triggers a crosstalk calibration measurement sequence.
Definition core_cal.c:86