Skip to content

Latest commit

 

History

History

libsweep

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

libsweep

Low-level Scanse Sweep LiDAR library. Comes as C99 library sweep.h with optional C++11 header sweep.hpp on top of it.

Quick Start

Linux

mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build .
sudo cmake --build . --target install
sudo ldconfig

If you don't have a Sweep device yet you can build a dummy libsweep.so always returning static point cloud data:

cmake .. -DCMAKE_BUILD_TYPE=Release -DDUMMY=On

This dummy library is API and ABI compatible. Once your device arrives switch out the libsweep.so shared library and you're good to go.

Windows

For Windows users open a command prompt with administrative access:

mkdir build
cd build
cmake .. -G "Visual Studio 14 2015 Win64"
cmake --build . --config Release
cmake --build . --target install --config Release

The above command assumes Visual Studio 2015. If you have a different version installed, change the value. ie:

Visual Studio 11 2012 Win64 = Generates Visual Studio 11 (VS 2012) project files for x64 architecture
Visual Studio 12 2013 Win64 = Generates Visual Studio 12 (VS 2013) project files for x64 architecture
Visual Studio 14 2015 Win64 = Generates Visual Studio 14 (VS 2015) project files for x64 architecture
Visual Studio 15 2017 Win64 = Generates Visual Studio 15 (VS 2017) project files for x64 architecture

Additionally, the above commands assume you want to build a x64 (64bit) verison of the library. To build a x86 (32 bit) version, simply drop the Win64. i.e.:

Visual Studio 14 2015 = Generates Visual Studio 14 (VS 2015) project files for x86 architecture

To build the dummy library add the dummy flag to the command:

cmake ..  -DDUMMY=On -G "Visual Studio 14 2015 Win64"

Then be sure to add the installation directories for the library and the header files to the environment PATH variable. For the above installation you'd have to add something like the following:

  • C:\Program Files\sweep\lib for the library
  • C:\Program Files\sweep\includefor the headers

You may have to restart the computer before the changes take effect.

Lastly, if you are on windows you will have to adjust the settings for the COM port you are using in order to communicate properly with the sweep sensor. Follow this guide. Adjusting settings only has to be done once for a given COM port, and windows will remember the settings.

FreeBSD

On FreeBSD, using pkg(8) is the easiest and fastest way to get libsweep on your machine:

# Requires ports-mgmt/pkg and security/sudo to be pre-installed.
# Or, just issue these commands as root without sudo (NOT recommended!)
sudo pkg update
sudo pkg install libsweep-lidar

In case you prefer to build everything from the source or do not have the actual device yet, building from ports(7) tree is another way:

# Requires security/sudo to be pre-installed.
# Or, just issue these commands as root without sudo (NOT recommended!)
sudo portsnap auto
cd /usr/ports/misc/libsweep-lidar
sudo make config # Enable NO_DEVICE build option if you don't have the actual device yet.
sudo make install clean

Usage

  • Include <sweep/sweep.h> for the C interface or <sweep/sweep.hpp> for the C++ interface.
  • Link libsweep.so with -lsweep.
  • On FreeBSD, be sure to specify library and header location: -I/usr/local/include -L/usr/local/lib

For example:

# Linux
gcc -Wall -Wextra -pedantic -std=c99 examples/example.c -lsweep
g++ -Wall -Wextra -pedantic -std=c++11 examples/example.cc -lsweep
# FreeBSD
cc -Weverything -std=c99 -I/usr/local/include -L/usr/local/lib -lsweep examples/example.c
c++ -Weverything -std=c++11 -I/usr/local/include -L/usr/local/lib -lsweep examples/example.cc

In addition, we provide CMake integration. In your CMakeLists.txt:

find_package(Sweep REQUIRED)
target_link_libraries(.. ${LIBSWEEP_LIBRARY})
target_include_directories(.. ${LIBSWEEP_INCLUDE_DIR})

See example.c and example.cc for a C and C++ example, respectively.

libsweep

Before jumping into details, here are the library's main design ideas:

  • Only opaque pointers (think typed void *) and plain C types in the API. This is how we accomplish ABI compatibility.
  • No global state: _s context objects (_s since POSIX reserves _t) hold state and have to be passed explicitly.
  • Make ownership and lifetimes explicit: all objects have to be _construct()ed for creation and successfully created objects have to be _destruct()ed for cleanup.
  • Sane defaults and user-friendly API: when possible we provide _simple() functions e.g. doing serial port auto-detection.
  • Fixed-size and signed integers for portability and runtime checking (think sanitizers).

Table of Contents:

Firmware Compatibility

libsweep sweep firmware
v1.2.0+ v1.4
v1.1.1 v1.2
v1.1.0 v1.1
v0.x.x v1.0

You can check the firmware version installed on your sweep device by using a serial terminal (see manual) or more easily using the sweep visualizer (see instructions).

Version And ABI Management

SWEEP_VERSION_MAJOR

Interface major version number.

SWEEP_VERSION_MINOR

Interface minor version number.

SWEEP_VERSION

Combined interface major and minor version number.

int32_t sweep_get_version(void)

Returns the library's version (see SWEEP_VERSION). Used for ABI compatibility checks.

bool sweep_is_abi_compatible(void)

Returns true if the library is ABI compatible. This check is done by comparing the interface header with the installed library's version.

Error Handling

SWEEP_ASSERT

Optionally define this for custom assertion handling. Uses assert from <assert.h> by default.

sweep_error_s

Opaque type representing an error. You can get a human readable representation using the sweep_error_message function. You have to destruct an error object with sweep_error_destruct.

const char* sweep_error_message(sweep_error_s error)

Human readable representation for an error.

void sweep_error_destruct(sweep_error_s error)

Destructs an sweep_error_s object.

Device Interaction

sweep_device_s

Opaque type representing a Sweep device. All direct device interaction happens on this type.

sweep_device_s sweep_device_construct_simple(const char* port, sweep_error_s* error)

Constructs a sweep_device_s based on a serial device port (e.g. /dev/ttyUSB0 on Linux or COM5 on Windows). In case of error a sweep_error_s will be written into error.

sweep_device_s sweep_device_construct(const char* port, int32_t bitrate, sweep_error_s* error)

Constructs a sweep_device_s with explicit hardware configuration. In case of error a sweep_error_s will be written into error.

void sweep_device_destruct(sweep_device_s device)

Destructs an sweep_device_s object.

void sweep_device_start_scanning(sweep_device_s device, sweep_error_s* error)

Signals the sweep_device_s to start scanning. If the motor is stationary (0Hz), will automatically set motor speed to default 5Hz. Will block until the device is ready (calibration routine complete + motor speed is stable). Starts internal background thread to accumulate and queue up scans. Scans can then be retrieved using sweep_device_get_scan. In case of error a sweep_error_s will be written into error.

void sweep_device_stop_scanning(sweep_device_s device, sweep_error_s* error)

Signals the sweep_device_s to stop scanning. Blocks for ~35ms to allow time for the trailing data stream to collect and flush internally, before sending a second stop command and validate the response. In case of error a sweep_error_s will be written into error.

bool sweep_device_get_motor_ready(sweep_device_s device, sweep_error_s* error)

Returns true if the device is ready. A device is ready when the motor speed has stabilized to the current setting, and the calibration routine is complete. For visual reference, the blue LED on the device will blink unil the device is ready. This method is useful when the device is powered on, or when adjusting motor speed. If the device is NOT ready, it will respond to certain commands (DS or MS) with a status code indicating a failure to execute the command. In case of error a sweep_error_s will be written into error.

int32_t sweep_device_get_motor_speed(sweep_device_s device, sweep_error_s* error)

Returns the sweep_device_s's motor speed setting in Hz. If the motor speed is currently changing, the returned motor speed is the target speed at which the device will stabilize. In case of error a sweep_error_s will be written into error.

void sweep_device_set_motor_speed(sweep_device_s device, int32_t hz, sweep_error_s* error)

Sets the sweep_device_s's motor speed in Hz. Blocks until prior motor speed has stabilized. The device supports speeds of 0 Hz to 10 Hz, but be careful that the device is not set at 0Hz before calling sweep_device_start_scanning. In case of error a sweep_error_s will be written into error.

int32_t sweep_device_get_sample_rate(sweep_device_s device, sweep_error_s* error)

Returns the sweep_device_s's sample rate in Hz. In case of error a sweep_error_s will be written into error.

void sweep_device_set_sample_rate(sweep_device_s device, int32_t hz, sweep_error_s* error)

Sets the sweep_device_s's sample rate in Hz. The device supports setting sample rate to the following values: 500 Hz, 750 Hz and 1000 Hz. These sample rates are not exact. They are general ballpark values. The actual sample rate may differ slightly. In case of error a sweep_error_s will be written into error.

void sweep_device_reset(sweep_device_s device, sweep_error_s* error)

Resets the sweep_device_s hardware. In case of error a sweep_error_s will be written into error.

Full 360 Degree Scan

sweep_scan_s

Opaque type representing a single full 360 degree scan from a sweep_device_s.

sweep_scan_s sweep_device_get_scan(sweep_device_s device, sweep_error_s* error)

Returns the ordered readings (1st to last) from a single scan. Retrieves the oldest scan from a queue of scans accumulated in a background thread. Blocks until a scan is available. To be used after calling sweep_device_start_scanning. In case of error a sweep_error_s will be written into error.

void sweep_scan_destruct(sweep_scan_s scan)

Destructs a sweep_scan_s object.

int32_t sweep_scan_get_number_of_samples(sweep_scan_s scan)

Returns the number of samples in a full 360 degree sweep_scan_s.

int32_t sweep_scan_get_angle(sweep_scan_s scan, int32_t sample)

Returns the angle in milli-degree for the sampleth sample in the sweep_scan_s.

int32_t sweep_scan_get_distance(sweep_scan_s scan, int32_t sample)

Returns the distance in centi-meter for the sampleth sample in the sweep_scan_s.

int32_t sweep_scan_get_signal_strength(sweep_scan_s scan, int32_t sample)

Returns the signal strength (0 low -- 255 high) for the sampleth sample in the sweep_scan_s.

Additional Information

It is recommended that you read through the sweep Theory of Operation and Best Practices.

License

Copyright © 2016 Daniel J. Hofmann

Copyright © 2016 Scanse LLC

Distributed under the MIT License (MIT).