Rename library

Dependencies:   X_NUCLEO_COMMON ST_INTERFACES

Dependents:   VL53L3CX_NoShield_1Sensor_poll_Mb06x VL53L3_NoShield_1Sensor_polling_Mb63 X_NUCLEO_53L3A2 53L3A2_Ranging

Committer:
charlesmn
Date:
Wed Jul 21 14:07:59 2021 +0000
Revision:
7:7f1bbf370283
Parent:
5:89031b2f5316
Moved vl53l3cx_class.cpp and .h to 53l3a2_RangingClass

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Charles MacNeill 5:89031b2f5316 1
Charles MacNeill 5:89031b2f5316 2 /* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
Charles MacNeill 5:89031b2f5316 3 /******************************************************************************
Charles MacNeill 5:89031b2f5316 4 * Copyright (c) 2020, STMicroelectronics - All Rights Reserved
Charles MacNeill 5:89031b2f5316 5
Charles MacNeill 5:89031b2f5316 6 This file is part of VL53LX and is dual licensed,
Charles MacNeill 5:89031b2f5316 7 either GPL-2.0+
Charles MacNeill 5:89031b2f5316 8 or 'BSD 3-clause "New" or "Revised" License' , at your option.
Charles MacNeill 5:89031b2f5316 9 ******************************************************************************
Charles MacNeill 5:89031b2f5316 10 */
Charles MacNeill 5:89031b2f5316 11
Charles MacNeill 5:89031b2f5316 12
Charles MacNeill 5:89031b2f5316 13
Charles MacNeill 5:89031b2f5316 14
Charles MacNeill 5:89031b2f5316 15 #ifndef _VL53LX_ERROR_EXCEPTIONS_H_
Charles MacNeill 5:89031b2f5316 16 #define _VL53LX_ERROR_EXCEPTIONS_H_
Charles MacNeill 5:89031b2f5316 17
Charles MacNeill 5:89031b2f5316 18 #define IGNORE_DIVISION_BY_ZERO 0
Charles MacNeill 5:89031b2f5316 19
Charles MacNeill 5:89031b2f5316 20 #define IGNORE_XTALK_EXTRACTION_NO_SAMPLE_FAIL 0
Charles MacNeill 5:89031b2f5316 21 #define IGNORE_XTALK_EXTRACTION_SIGMA_LIMIT_FAIL 0
Charles MacNeill 5:89031b2f5316 22 #define IGNORE_XTALK_EXTRACTION_NO_SAMPLE_FOR_GRADIENT_WARN 0
Charles MacNeill 5:89031b2f5316 23 #define IGNORE_XTALK_EXTRACTION_SIGMA_LIMIT_FOR_GRADIENT_WARN 0
Charles MacNeill 5:89031b2f5316 24 #define IGNORE_XTALK_EXTRACTION_MISSING_SAMPLES_WARN 0
Charles MacNeill 5:89031b2f5316 25
Charles MacNeill 5:89031b2f5316 26 #define IGNORE_REF_SPAD_CHAR_NOT_ENOUGH_SPADS 0
Charles MacNeill 5:89031b2f5316 27 #define IGNORE_REF_SPAD_CHAR_RATE_TOO_HIGH 0
Charles MacNeill 5:89031b2f5316 28 #define IGNORE_REF_SPAD_CHAR_RATE_TOO_LOW 0
Charles MacNeill 5:89031b2f5316 29
Charles MacNeill 5:89031b2f5316 30 #define IGNORE_OFFSET_CAL_MISSING_SAMPLES 0
Charles MacNeill 5:89031b2f5316 31 #define IGNORE_OFFSET_CAL_SIGMA_TOO_HIGH 0
Charles MacNeill 5:89031b2f5316 32 #define IGNORE_OFFSET_CAL_RATE_TOO_HIGH 0
Charles MacNeill 5:89031b2f5316 33 #define IGNORE_OFFSET_CAL_SPAD_COUNT_TOO_LOW 0
Charles MacNeill 5:89031b2f5316 34
Charles MacNeill 5:89031b2f5316 35 #define IGNORE_ZONE_CAL_MISSING_SAMPLES 0
Charles MacNeill 5:89031b2f5316 36 #define IGNORE_ZONE_CAL_SIGMA_TOO_HIGH 0
Charles MacNeill 5:89031b2f5316 37 #define IGNORE_ZONE_CAL_RATE_TOO_HIGH 0
Charles MacNeill 5:89031b2f5316 38
Charles MacNeill 5:89031b2f5316 39 #endif
Charles MacNeill 5:89031b2f5316 40