#include <usb_depth_sensor.h>
Classes | |
struct | ImplData |
Public Member Functions | |
virtual aditof::Status | adsd3500_get_status (int &chipStatus, int &imagerStatus) override |
Returns the chip status. More... | |
virtual aditof::Status | adsd3500_read_cmd (uint16_t cmd, uint16_t *data, unsigned int usDelay=0) override |
Send a read command to adsd3500. More... | |
virtual aditof::Status | adsd3500_read_payload (uint8_t *payload, uint16_t payload_len) override |
Reads a chunk of data from adsd3500. This will perform a burst read making it useful for reading chunks of data. More... | |
virtual aditof::Status | adsd3500_read_payload_cmd (uint32_t cmd, uint8_t *readback_data, uint16_t payload_len) override |
Send a read command to adsd3500. This will perform a burst read making it useful for reading chunks of data. More... | |
virtual aditof::Status | adsd3500_register_interrupt_callback (aditof::SensorInterruptCallback &cb) override |
Register a function to be called when a ADSD3500 interrupt occurs. More... | |
virtual aditof::Status | adsd3500_reset () override |
Reset adsd3500 chip. More... | |
virtual aditof::Status | adsd3500_unregister_interrupt_callback (aditof::SensorInterruptCallback &cb) override |
Unregister a function registered with adsd3500_register_interrupt_callback. More... | |
virtual aditof::Status | adsd3500_write_cmd (uint16_t cmd, uint16_t data, unsigned int usDelay=0) override |
Send a write command to adsd3500. More... | |
virtual aditof::Status | adsd3500_write_payload (uint8_t *payload, uint16_t payload_len) override |
Send a chunk of data (payload) to adsd3500. This will perform a burst write making it useful for writing chunks of data. More... | |
virtual aditof::Status | adsd3500_write_payload_cmd (uint32_t cmd, uint8_t *payload, uint16_t payload_len) override |
Send a write command to adsd3500. This will perform a burst write making it useful for writing chunks of data. More... | |
virtual aditof::Status | getAvailableControls (std::vector< std::string > &controls) const override |
Gets the sensors's list of controls. More... | |
virtual aditof::Status | getAvailableModes (std::vector< uint8_t > &modes) override |
Return all modes that are supported by the sensor. More... | |
virtual aditof::Status | getControl (const std::string &control, std::string &value) const override |
Gets the value of a specific sensor control. More... | |
virtual aditof::Status | getDepthComputeParams (std::map< std::string, std::string > ¶ms) override |
Get ini parameters for Depth Compute library. More... | |
virtual aditof::Status | getDetails (aditof::SensorDetails &details) const override |
Get a structure that contains information about the instance of the sensor. More... | |
virtual aditof::Status | getFrame (uint16_t *buffer) override |
Request a frame from the sensor. More... | |
virtual aditof::Status | getHandle (void **handle) override |
Gets a handle to be used by other devices such as Storage, Temperature, etc. This handle will allow the other devices to communicate remotely with the embedded target. More... | |
aditof::Status | getIniParamsArrayForMode (int mode, std::string &iniStr) override |
Get ini parameters for Depth Compute library as string. More... | |
virtual aditof::Status | getModeDetails (const uint8_t &mode, aditof::DepthSensorModeDetails &details) override |
Returns details of specified mode. More... | |
virtual aditof::Status | getName (std::string &name) const override |
Get the name of the sensor. More... | |
virtual aditof::Status | initTargetDepthCompute (uint8_t *iniFile, uint16_t iniFileLength, uint8_t *calData, uint16_t calDataLength) override |
Get the name of the sensor. More... | |
virtual aditof::Status | open () override |
Open the communication channels with the hardware. More... | |
virtual aditof::Status | setControl (const std::string &control, const std::string &value) override |
Sets a specific sensor control. More... | |
virtual aditof::Status | setDepthComputeParams (const std::map< std::string, std::string > ¶ms) override |
Set ini parameters for Depth Compute library. More... | |
virtual aditof::Status | setHostConnectionType (std::string &connectionType) override |
Set the host connection type for target sdk. More... | |
virtual aditof::Status | setMode (const aditof::DepthSensorModeDetails &type) override |
Set the sensor frame mode to the given type. More... | |
virtual aditof::Status | setMode (const uint8_t &mode) override |
Set the sensor frame mode to the given type. More... | |
virtual aditof::Status | setSensorConfiguration (const std::string &sensorConf) override |
Set sensor configutation table. More... | |
virtual aditof::Status | start () override |
Start the streaming of data from the sensor. More... | |
virtual aditof::Status | stop () override |
Stop the sensor data stream. More... | |
UsbDepthSensor (const std::string &name, const std::string &driverPath) | |
~UsbDepthSensor () | |
![]() | |
virtual | ~DepthSensorInterface ()=default |
Destructor. More... | |
Private Attributes | |
std::vector< aditof::DepthSensorModeDetails > | m_depthSensorModes |
std::string | m_driverPath |
int | m_fps |
std::unique_ptr< ImplData > | m_implData |
aditof::SensorDetails | m_sensorDetails |
std::string | m_sensorName |
Definition at line 44 of file usb_depth_sensor.h.
UsbDepthSensor::UsbDepthSensor | ( | const std::string & | name, |
const std::string & | driverPath | ||
) |
Definition at line 74 of file usb_depth_sensor_linux.cpp.
|
default |
Definition at line 86 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Returns the chip status.
[out] | chipStatus | - chip status (error) value |
[out] | imagerStatus | - imager status (error) value |
Implements aditof::DepthSensorInterface.
Definition at line 1010 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Send a read command to adsd3500.
cmd | - the command to be sent | |
[out] | data | - the variable where the read data will be stored |
usDelay | - the number of microseconds to wait between the host command and the actual read |
Implements aditof::DepthSensorInterface.
Definition at line 674 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Reads a chunk of data from adsd3500. This will perform a burst read making it useful for reading chunks of data.
payload | - the location from where to take the data chunk and read it |
payload_len | - the number of bytes to read |
Implements aditof::DepthSensorInterface.
Definition at line 817 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Send a read command to adsd3500. This will perform a burst read making it useful for reading chunks of data.
cmd | - the command to be sent | |
[out] | readback_data | - the location where the read data chunk will be stored |
payload_len | - the number of bytes to read |
Implements aditof::DepthSensorInterface.
Definition at line 765 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Register a function to be called when a ADSD3500 interrupt occurs.
cb | - the function to be called whenever the interrupt occurs |
Implements aditof::DepthSensorInterface.
Definition at line 996 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Reset adsd3500 chip.
Implements aditof::DepthSensorInterface.
Definition at line 955 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Unregister a function registered with adsd3500_register_interrupt_callback.
cb | - the function to be unregistred |
Implements aditof::DepthSensorInterface.
Definition at line 1003 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Send a write command to adsd3500.
cmd | - the command to be sent |
data | - the data to be written |
usDelay | - the number of microseconds to wait between the host command and the actual write |
Implements aditof::DepthSensorInterface.
Definition at line 721 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Send a chunk of data (payload) to adsd3500. This will perform a burst write making it useful for writing chunks of data.
payload | - the location from where to take the data chunk and write it |
payload_len | - the number of bytes to write |
Implements aditof::DepthSensorInterface.
Definition at line 911 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Send a write command to adsd3500. This will perform a burst write making it useful for writing chunks of data.
cmd | - the command to be sent |
payload | - the location from where to take the data chunk and write it |
payload_len | - the number of bytes to write |
Implements aditof::DepthSensorInterface.
Definition at line 863 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Gets the sensors's list of controls.
[out] | controls |
Implements aditof::DepthSensorInterface.
Definition at line 503 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Return all modes that are supported by the sensor.
[out] | modes |
Implements aditof::DepthSensorInterface.
Definition at line 241 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Gets the value of a specific sensor control.
[in] | control | - Control name |
[out] | value | - Control value |
Implements aditof::DepthSensorInterface.
Definition at line 600 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Get ini parameters for Depth Compute library.
[in] | params | - a dictionary of parameters |
Implements aditof::DepthSensorInterface.
Definition at line 1024 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Get a structure that contains information about the instance of the sensor.
[out] | details | - the variable where the sensor details should be stored |
Implements aditof::DepthSensorInterface.
Definition at line 647 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Request a frame from the sensor.
buffer | - a valid location where the new frame should be stored. The size of the frame is known (cached) internally and gets updated each time setMode() is called. |
Implements aditof::DepthSensorInterface.
Definition at line 422 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Gets a handle to be used by other devices such as Storage, Temperature, etc. This handle will allow the other devices to communicate remotely with the embedded target.
[out] | handle | - the handle which is owned by this instance |
Implements aditof::DepthSensorInterface.
Definition at line 652 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Get ini parameters for Depth Compute library as string.
[in] | mode | - desired mode |
[out] | iniStr | - a string that contain ini params |
Implements aditof::DepthSensorInterface.
Definition at line 1044 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Returns details of specified mode.
mode | ||
[out] | details |
Implements aditof::DepthSensorInterface.
Definition at line 251 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Get the name of the sensor.
[out] | name | - the string in which the name is stored |
Implements aditof::DepthSensorInterface.
Definition at line 663 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Get the name of the sensor.
[in] | iniFile | - iniFile content parsed as uint8_t* |
[in] | iniFileLength | - iniFile content length |
[in] | calData | - calibration data parsed as uint8_t* |
[in] | calDataLength | - calibration data content length |
Implements aditof::DepthSensorInterface.
Definition at line 1017 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Open the communication channels with the hardware.
Implements aditof::DepthSensorInterface.
Definition at line 115 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Sets a specific sensor control.
[in] | control | - Control name |
[in] | value | - Control value |
Implements aditof::DepthSensorInterface.
Definition at line 550 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Set ini parameters for Depth Compute library.
[in] | params | - a dictionary of parameters |
Implements aditof::DepthSensorInterface.
Definition at line 1031 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Set the host connection type for target sdk.
[in] | connectionType | - the string that sets the host type on the target |
Implements aditof::DepthSensorInterface.
Definition at line 669 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Set the sensor frame mode to the given type.
type | - frame details structure containing the frame type |
Implements aditof::DepthSensorInterface.
Definition at line 269 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Set the sensor frame mode to the given type.
mode | - desired mode |
Implements aditof::DepthSensorInterface.
Definition at line 264 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Set sensor configutation table.
sensorConf | - Configuration table name string like e.g. standard, standardraw, custom and customraw |
Implements aditof::DepthSensorInterface.
Definition at line 1039 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Start the streaming of data from the sensor.
Implements aditof::DepthSensorInterface.
Definition at line 183 of file usb_depth_sensor_linux.cpp.
|
overridevirtual |
Stop the sensor data stream.
Implements aditof::DepthSensorInterface.
Definition at line 219 of file usb_depth_sensor_linux.cpp.
|
private |
Definition at line 115 of file usb_depth_sensor.h.
|
private |
Definition at line 113 of file usb_depth_sensor.h.
|
private |
Definition at line 116 of file usb_depth_sensor.h.
|
private |
Definition at line 114 of file usb_depth_sensor.h.
|
private |
Definition at line 112 of file usb_depth_sensor.h.
|
private |
Definition at line 110 of file usb_depth_sensor.h.