AFBR-S50 API Reference Manual v1.6.5
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/*!***************************************************************************
53 * @brief Triggers a crosstalk calibration measurement sequence.
54 * @param argus The Argus device handler.
55 * @return Returns the \link #status_t status\endlink (#STATUS_OK on success).
56 *****************************************************************************/
58
59/*!***************************************************************************
60 * @brief Triggers a crosstalk calibration measurement sequence.
61 * @param argus The Argus device handler.
62 * @param targetRange The calibration target distance in meter and Q9.22
63 * format. Pass non-positive (0) value to execute
64 * relative calibration sequence only.
65 * @return Returns the \link #status_t status\endlink (#STATUS_OK on success).
66 *****************************************************************************/
68
69
70
72#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:320
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:69
status_t ExplorerApp_ExecuteOffsetsCalibrationSequence(argus_hnd_t *argus, q9_22_t targetRange)
Triggers a crosstalk calibration measurement sequence.
Definition core_cal.c:88