Rename library

Dependencies:   X_NUCLEO_COMMON ST_INTERFACES

Dependents:   VL53L3CX_NoShield_1Sensor_poll_Mb06x VL53L3_NoShield_1Sensor_polling_Mb63 X_NUCLEO_53L3A2 53L3A2_Ranging

Revision:
5:89031b2f5316
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/modules/vl53lx_api_debug.h	Wed Jul 14 12:45:49 2021 +0100
@@ -0,0 +1,341 @@
+
+/* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
+/******************************************************************************
+ * Copyright (c) 2020, STMicroelectronics - All Rights Reserved
+
+ This file is part of VL53LX and is dual licensed,
+ either GPL-2.0+
+ or 'BSD 3-clause "New" or "Revised" License' , at your option.
+ ******************************************************************************
+ */
+
+
+
+
+#ifndef _VL53LX_API_DEBUG_H_
+#define _VL53LX_API_DEBUG_H_
+
+#include "vl53lx_platform.h"
+#include "vl53lx_nvm_structs.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+
+
+
+VL53LX_Error VL53LX_decode_calibration_data_buffer(
+	uint16_t                   buf_size,
+	uint8_t                   *pbuffer,
+	VL53LX_calibration_data_t *pdata);
+
+
+
+
+
+
+VL53LX_Error VL53LX_get_nvm_debug_data(
+	VL53LX_DEV                 Dev,
+	VL53LX_decoded_nvm_data_t *pdata);
+
+
+
+VL53LX_Error VL53LX_get_histogram_debug_data(
+	VL53LX_DEV                   Dev,
+	VL53LX_histogram_bin_data_t *pdata);
+
+
+
+
+
+
+VL53LX_Error VL53LX_get_additional_data(
+	VL53LX_DEV                Dev,
+	VL53LX_additional_data_t *pdata);
+
+
+
+
+
+
+VL53LX_Error VL53LX_get_xtalk_debug_data(
+	VL53LX_DEV                 Dev,
+	VL53LX_xtalk_debug_data_t *pdata);
+
+
+
+
+VL53LX_Error VL53LX_get_offset_debug_data(
+	VL53LX_DEV                 Dev,
+	VL53LX_offset_debug_data_t *pdata);
+
+#ifdef VL53LX_LOG_ENABLE
+
+
+
+void  VL53LX_signed_fixed_point_sprintf(
+	int32_t    fp_value,
+	uint8_t    frac_bits,
+	uint16_t   buf_size,
+	char      *pbuffer);
+
+
+
+
+void VL53LX_print_static_nvm_managed(
+	VL53LX_static_nvm_managed_t   *pdata,
+	char                          *pprefix,
+	uint32_t                       trace_flags);
+
+
+
+
+void VL53LX_print_customer_nvm_managed(
+	VL53LX_customer_nvm_managed_t *pdata,
+	char                          *pprefix,
+	uint32_t                       trace_flags);
+
+
+
+
+void VL53LX_print_nvm_copy_data(
+	VL53LX_nvm_copy_data_t        *pdata,
+	char                          *pprefix,
+	uint32_t                       trace_flags);
+
+
+
+
+void VL53LX_print_histogram_bin_data(
+	VL53LX_histogram_bin_data_t *pdata,
+	char                        *pprefix,
+	uint32_t                     trace_flags);
+
+
+
+
+void VL53LX_print_xtalk_histogram_data(
+	VL53LX_xtalk_histogram_data_t *pdata,
+	char                          *pprefix,
+	uint32_t                       trace_flags);
+
+
+
+
+void VL53LX_print_xtalk_histogram_shape_data(
+	VL53LX_xtalk_histogram_shape_t *pdata,
+	char                           *pprefix,
+	uint32_t                        trace_flags);
+
+
+
+
+void VL53LX_print_range_results(
+	VL53LX_range_results_t *pdata,
+	char                   *pprefix,
+	uint32_t                trace_flags);
+
+
+
+void VL53LX_print_range_data(
+	VL53LX_range_data_t *pdata,
+	char                *pprefix,
+	uint32_t             trace_flags);
+
+
+
+
+void VL53LX_print_offset_range_results(
+	VL53LX_offset_range_results_t *pdata,
+	char                          *pprefix,
+	uint32_t                       trace_flags);
+
+
+
+
+void VL53LX_print_offset_range_data(
+	VL53LX_offset_range_data_t *pdata,
+	char                       *pprefix,
+	uint32_t                    trace_flags);
+
+
+
+
+void VL53LX_print_cal_peak_rate_map(
+	VL53LX_cal_peak_rate_map_t *pdata,
+	char                       *pprefix,
+	uint32_t                    trace_flags);
+
+
+
+
+void VL53LX_print_additional_offset_cal_data(
+	VL53LX_additional_offset_cal_data_t *pdata,
+	char                                *pprefix,
+	uint32_t                             trace_flags);
+
+
+
+void VL53LX_print_additional_data(
+	VL53LX_additional_data_t *pdata,
+	char                     *pprefix,
+	uint32_t                 trace_flags);
+
+
+
+
+void VL53LX_print_gain_calibration_data(
+	VL53LX_gain_calibration_data_t *pdata,
+	char                           *pprefix,
+	uint32_t                        trace_flags);
+
+
+
+
+void VL53LX_print_zone_calibration_data(
+	VL53LX_zone_calibration_data_t *pdata,
+	char                           *pprefix,
+	uint32_t                        trace_flags);
+
+
+
+
+void VL53LX_print_zone_calibration_results(
+	VL53LX_zone_calibration_results_t *pdata,
+	char                              *pprefix,
+	uint32_t                           trace_flags);
+
+
+
+
+void VL53LX_print_xtalk_range_results(
+	VL53LX_xtalk_range_results_t *pdata,
+	char                         *pprefix,
+	uint32_t                      trace_flags);
+
+
+
+
+void VL53LX_print_xtalk_range_data(
+	VL53LX_xtalk_range_data_t *pdata,
+	char                      *pprefix,
+	uint32_t                   trace_flags);
+
+
+
+
+void VL53LX_print_xtalk_calibration_results(
+	VL53LX_xtalk_calibration_results_t *pdata,
+	char                               *pprefix,
+	uint32_t                            trace_flags);
+
+
+
+
+void VL53LX_print_xtalk_config(
+	VL53LX_xtalk_config_t *pdata,
+	char                  *pprefix,
+	uint32_t               trace_flags);
+
+
+
+void VL53LX_print_xtalk_extract_config(
+	VL53LX_xtalkextract_config_t *pdata,
+	char                         *pprefix,
+	uint32_t                      trace_flags);
+
+
+
+void VL53LX_print_zone_cal_config(
+	VL53LX_zonecal_config_t *pdata,
+	char                    *pprefix,
+	uint32_t                 trace_flags);
+
+
+
+void VL53LX_print_offset_cal_config(
+	VL53LX_offsetcal_config_t *pdata,
+	char                      *pprefix,
+	uint32_t                   trace_flags);
+
+
+
+
+void VL53LX_print_dmax_calibration_data(
+	VL53LX_dmax_calibration_data_t *pdata,
+	char                           *pprefix,
+	uint32_t                        trace_flags);
+
+
+
+
+void VL53LX_print_calibration_data(
+	VL53LX_calibration_data_t *pdata,
+	char                      *pprefix,
+	uint32_t                   trace_flags);
+
+
+
+
+void VL53LX_print_xtalk_debug_data(
+	VL53LX_xtalk_debug_data_t *pdata,
+	char                      *pprefix,
+	uint32_t                   trace_flags);
+
+
+
+void VL53LX_print_offset_debug_data(
+	VL53LX_offset_debug_data_t *pdata,
+	char                       *pprefix,
+	uint32_t                    trace_flags);
+
+
+
+
+void VL53LX_print_optical_centre(
+	VL53LX_optical_centre_t   *pdata,
+	char                      *pprefix,
+	uint32_t                   trace_flags);
+
+
+
+
+void VL53LX_print_user_zone(
+	VL53LX_user_zone_t   *pdata,
+	char                 *pprefix,
+	uint32_t              trace_flags);
+
+
+
+void VL53LX_print_zone_config(
+	VL53LX_zone_config_t *pdata,
+	char                 *pprefix,
+	uint32_t              trace_flags);
+
+
+
+
+void VL53LX_print_spad_rate_data(
+	VL53LX_spad_rate_data_t  *pspad_rates,
+	char                     *pprefix,
+	uint32_t                  trace_flags);
+
+
+
+
+void VL53LX_print_spad_rate_map(
+	VL53LX_spad_rate_data_t  *pspad_rates,
+	char                     *pprefix,
+	uint32_t                  trace_flags);
+
+
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+