#bindings #bosch #path #build #bsec

sys libalgobsec-sys

Unsafe bindings to the Bosch BSEC library

5 releases (3 breaking)

0.3.0+1.4.8.0 Feb 8, 2023
0.2.0+1.4.8.0 Apr 30, 2021
0.1.0+1.4.8.0 Apr 28, 2021
0.0.2+1.4.8.0 Apr 22, 2021
0.0.1+1.4.8.0 Apr 22, 2021

#788 in Embedded development

27 downloads per month
Used in bsec

MIT/Apache

8KB
51 lines

libalgobsec-sys

Unsafe bindings to the Bosch BSEC library.

Important license information

The BSEC library is proprietary. Thus, it cannot be included in this crate and its documentation need to be obtained separately. You are responsible for adhering to that license in your products despite the source code of this crate to generate the necessary bindings is published under a permissive license.

Note that the source code of this crate does not contain any of the BSEC source code, API declartions, or documentation.

Usage

To be able to use this crate it needs to know where to find the BSEC header files and library on your system. These paths are provided as the configuration options bsec_include_path and bsec_library_path to the Rust compiler.

You can do this by creating a .cargo/config file in your crate with the following content (adjust the paths accordingly):

[build]
rustflags = [
    '--cfg', 'bsec_include_path="/path/to/BSEC_1.4.8.0_Generic_Release/algo/normal_version/inc"',
    '--cfg', 'bsec_library_path="/path/to/BSEC_1.4.8.0_Generic_Release/algo/normal_version/bin/target-arch"',
]

Cross-compilation with cross

You need to ensure that all BSEC dependencies are installed in the container image used for the build. For example:

# Cross.toml
[target.arm-unknown-linux-gnueabihf]
pre-build = ["apt-get update && apt-get install --assume-yes libffi-dev"]

In .cargo/config you need to configure the path to BSEC within the container:

[build]
rustflags = [
    '--cfg', 'bsec_include_path="/bsec/algo/normal_version/inc"',
    '--cfg', 'bsec_library_path="/bsec/algo/normal_version/bin/target-arch"',
]

If you have BSEC not included in the container image, you can mount it from your host system, when you invoke cross. For example:

DOCKER_OPTS='-v /path/to/BSEC_1.4.8.0_Generic_Release:/bsec' cross build --target=arm-unknown-linux-gnueabihf

Building local BSEC documentation

If you build the documentation locally with cargo doc, after the above setup, BSEC documentation extracted from the header files will be included.

Dependencies

~0–1.8MB
~37K SLoC