Functions used to select Steps done on each ranging. More...
Functions | |
VL53L1_Error | VL53L1_GetNumberOfSequenceSteps (VL53L1_DEV Dev, uint8_t *pNumberOfSequenceSteps) |
Gets number of sequence steps managed by the API. More... | |
VL53L1_Error | VL53L1_GetSequenceStepEnable (VL53L1_DEV Dev, VL53L1_SequenceStepId SequenceStepId, uint8_t *pSequenceStepEnabled) |
Gets the (on/off) state of a requested sequence step. More... | |
VL53L1_Error | VL53L1_GetSequenceStepsInfo (VL53L1_SequenceStepId SequenceStepId, char *pSequenceStepsString) |
Gets the name of a given sequence step. More... | |
VL53L1_Error | VL53L1_SetSequenceStepEnable (VL53L1_DEV Dev, VL53L1_SequenceStepId SequenceStepId, uint8_t SequenceStepEnabled) |
Sets the (on/off) state of a requested sequence step. More... | |
Functions used to select Steps done on each ranging.
VL53L1_Error VL53L1_GetNumberOfSequenceSteps | ( | VL53L1_DEV | Dev, |
uint8_t * | pNumberOfSequenceSteps | ||
) |
Gets number of sequence steps managed by the API.
Dev | Device Handle |
pNumberOfSequenceSteps | Out parameter reporting the number of sequence steps. |
Definition at line 1644 of file vl53l1_api.c.
VL53L1_Error VL53L1_GetSequenceStepEnable | ( | VL53L1_DEV | Dev, |
VL53L1_SequenceStepId | SequenceStepId, | ||
uint8_t * | pSequenceStepEnabled | ||
) |
Gets the (on/off) state of a requested sequence step.
Dev | Device Handle |
SequenceStepId | Sequence step identifier. |
pSequenceStepEnabled | Out parameter reporting if the sequence step is enabled {0=Off,1=On}. |
Definition at line 1708 of file vl53l1_api.c.
VL53L1_Error VL53L1_GetSequenceStepsInfo | ( | VL53L1_SequenceStepId | SequenceStepId, |
char * | pSequenceStepsString | ||
) |
Gets the name of a given sequence step.
SequenceStepId | Sequence step identifier. |
pSequenceStepsString | Pointer to Info string. Shall be defined as char buf[VL53L1_MAX_STRING_LENGTH] |
Definition at line 1659 of file vl53l1_api.c.
VL53L1_Error VL53L1_SetSequenceStepEnable | ( | VL53L1_DEV | Dev, |
VL53L1_SequenceStepId | SequenceStepId, | ||
uint8_t | SequenceStepEnabled | ||
) |
Sets the (on/off) state of a requested sequence step.
Dev | Device Handle |
SequenceStepId | Sequence step identifier. |
SequenceStepEnabled | Demanded state {0=Off,1=On} is enabled. |
Definition at line 1675 of file vl53l1_api.c.