Expand description
§a121-sys Crate Documentation
Welcome to the a121-sys
crate, providing raw FFI bindings for the Acconeer A121 radar sensor.
This crate offers low-level access to the A121 sensor’s capabilities, designed for embedded systems
and no_std
environments.
§Usage
Add a121-sys
to your Cargo.toml
:
[dependencies]
# For real hardware
a121-sys = { version = "0.5", features = ["distance", "presence"] }
# For testing/development with stub library
a121-sys = { version = "0.5", features = ["stub_library", "distance", "presence"] }
§Features
- distance: Enable distance measurement functionality
- presence: Enable presence detection functionality
- stub_library: Use stub implementations for testing/development without hardware
- std: Enable functionality requiring the standard library
§Library Requirements
This crate requires the Acconeer A121 static libraries and the arm-none-eabi-gcc
toolchain. You can either:
-
Use the real libraries:
- Obtain the official Acconeer A121 SDK
- Set
ACC_RSS_LIBS
environment variable to the library location
-
Use stub libraries (for testing/development):
- Enable the
stub_library
feature
- Enable the
§Logging Integration
The crate provides a way to integrate with the sensor’s native logging through a C log wrapper.
Implement the rust_log
function to capture log messages:
use core::ffi::c_char;
#[no_mangle]
pub extern "C" fn rust_log(level: u32, message: *const c_char) {
// Your logging implementation here
}
§Embedded Usage
The crate is designed for embedded systems and supports:
no_std
environments- Cortex-M4 targets (specifically
thumbv7em-none-eabihf
, or risc) - Both real hardware and stub implementations
Example target configuration:
[build]
target = "thumbv7em-none-eabihf"
[target.thumbv7em-none-eabihf]
rustflags = [
"-C", "link-arg=-mcpu=cortex-m4",
"-C", "link-arg=-mthumb",
"-C", "link-arg=-mfloat-abi=hard",
"-C", "link-arg=-mfpu=fpv4-sp-d16",
]
§Safety
This crate provides raw FFI bindings which are inherently unsafe. Users should:
- Take care when implementing the logging callback
- Ensure proper initialization of the sensor
- Follow proper memory management practices
- Consider using higher-level safe wrappers (like the
a121
crate)
§Development and Testing
For development without hardware:
-
Enable the stub library feature:
a121-sys = { version = "0.5", features = ["stub_library"] }
-
Install required toolchain:
rustup target add thumbv7em-none-eabihf # Install ARM GCC toolchain for your platform
§Environment Variables
ACC_RSS_LIBS
: Path to the Acconeer A121 librariesCPATH
: Additional C header paths (usually set automatically)
§Version Compatibility
- Current bindings version: 1.8.0
- Minimum Supported Rust Version (MSRV): 1.82.0
Structs§
- __
atomic_ wide_ counter__ bindgen_ ty_ 1 - __
fsid_ t - __
once_ flag - __
pthread_ cond_ s - __
pthread_ internal_ list - __
pthread_ internal_ slist - __
pthread_ mutex_ s - __
pthread_ rwlock_ arch_ t - __
sigset_ t - acc_
cal_ info_ t - @brief Information about calibration.
- acc_
cal_ result_ t - @brief The result from a completed calibration.
- acc_
config - @defgroup config Config @ingroup service
- acc_
detector_ cal_ result_ dynamic_ t - @brief The result from a completed calibration update
- acc_
detector_ distance_ config - acc_
detector_ distance_ handle - acc_
detector_ distance_ result_ t - @brief Distance Detector result returned from @ref acc_detector_distance_process
- acc_
detector_ presence_ config - @brief Presence detector configuration container
- acc_
detector_ presence_ handle - @brief Presence detector handle
- acc_
detector_ presence_ metadata_ t - brief Metadata for presence detector
- acc_
detector_ presence_ processing_ config - @brief Presence processing configuration container
- acc_
detector_ presence_ processing_ handle - @brief Presence detector handle container
- acc_
detector_ presence_ processing_ result_ t - @brief Presence detector results container
- acc_
detector_ presence_ result_ t - @brief Presence detector results container
- acc_
hal_ a121_ t - acc_
hal_ optimization_ t - @brief This struct contains function pointers that are optional to support different optimizations
- acc_
int16_ complex_ t - @brief Data type for interger-based representation of complex numbers
- acc_
processing_ handle - @brief Generic processing handle
- acc_
processing_ metadata_ t - @brief Metadata that will be populated by the processing module during creation
- acc_
processing_ result_ t - @brief Result provided by the processing module
- acc_
rss_ assembly_ test - @brief The acc_rss_assembly_test instance
- acc_
rss_ assembly_ test_ result_ t - @brief The result struct of acc_rss_assembly_test
- acc_
sensor - @defgroup service Service
- div_t
- drand48_
data - fd_set
- imaxdiv_
t - ldiv_t
- lldiv_t
- max_
align_ t - random_
data - timespec
- timeval
Constants§
- ACC_
CAL_ RESULT_ DATA_ SIZE - ACC_
DETECTOR_ CAL_ RESULT_ DYNAMIC_ DATA_ SIZE - ACC_
DETECTOR_ DISTANCE_ RESULT_ MAX_ NUM_ DISTANCES - ACC_
HAL_ SPI_ TRANSFER_ SIZE_ REQUIRED - ACC_
MAX_ NUM_ SUBSWEEPS - ACC_
RSS_ ASSEMBLY_ TEST_ MIN_ BUFFER_ SIZE - BIG_
ENDIAN - BYTE_
ORDER - EXIT_
FAILURE - EXIT_
SUCCESS - FD_
SETSIZE - INT8_
MAX - INT8_
MIN - INT16_
MAX - INT16_
MIN - INT32_
MAX - INT32_
MIN - INTPTR_
MAX - INTPTR_
MIN - INT_
FAST8_ MAX - INT_
FAST8_ MIN - INT_
FAST16_ MAX - INT_
FAST16_ MIN - INT_
FAST32_ MAX - INT_
FAST32_ MIN - INT_
LEAS T8_ MAX - INT_
LEAS T8_ MIN - INT_
LEAS T16_ MAX - INT_
LEAS T16_ MIN - INT_
LEAS T32_ MAX - INT_
LEAS T32_ MIN - LITTLE_
ENDIAN - PDP_
ENDIAN - PRIX8
- PRIX16
- PRIX32
- PRIX64
- PRIXFAS
T8 - PRIXFAS
T16 - PRIXFAS
T32 - PRIXFAS
T64 - PRIXLEAS
T8 - PRIXLEAS
T16 - PRIXLEAS
T32 - PRIXLEAS
T64 - PRIXMAX
- PRIXPTR
- PRId8
- PRId16
- PRId32
- PRId64
- PRIdFAS
T8 - PRIdFAS
T16 - PRIdFAS
T32 - PRIdFAS
T64 - PRIdLEAS
T8 - PRIdLEAS
T16 - PRIdLEAS
T32 - PRIdLEAS
T64 - PRIdMAX
- PRIdPTR
- PRIi8
- PRIi16
- PRIi32
- PRIi64
- PRIiFAS
T8 - PRIiFAS
T16 - PRIiFAS
T32 - PRIiFAS
T64 - PRIiLEAS
T8 - PRIiLEAS
T16 - PRIiLEAS
T32 - PRIiLEAS
T64 - PRIiMAX
- PRIiPTR
- PRIo8
- PRIo16
- PRIo32
- PRIo64
- PRIoFAS
T8 - PRIoFAS
T16 - PRIoFAS
T32 - PRIoFAS
T64 - PRIoLEAS
T8 - PRIoLEAS
T16 - PRIoLEAS
T32 - PRIoLEAS
T64 - PRIoMAX
- PRIoPTR
- PRIsensor_
id - PRIu8
- PRIu16
- PRIu32
- PRIu64
- PRIuFAS
T8 - PRIuFAS
T16 - PRIuFAS
T32 - PRIuFAS
T64 - PRIuLEAS
T8 - PRIuLEAS
T16 - PRIuLEAS
T32 - PRIuLEAS
T64 - PRIuMAX
- PRIuPTR
- PRIx8
- PRIx16
- PRIx32
- PRIx64
- PRIxFAS
T8 - PRIxFAS
T16 - PRIxFAS
T32 - PRIxFAS
T64 - PRIxLEAS
T8 - PRIxLEAS
T16 - PRIxLEAS
T32 - PRIxLEAS
T64 - PRIxMAX
- PRIxPTR
- PTRDIFF_
MAX - PTRDIFF_
MIN - RAND_
MAX - SCNd8
- SCNd16
- SCNd32
- SCNd64
- SCNdFAS
T8 - SCNdFAS
T16 - SCNdFAS
T32 - SCNdFAS
T64 - SCNdLEAS
T8 - SCNdLEAS
T16 - SCNdLEAS
T32 - SCNdLEAS
T64 - SCNdMAX
- SCNdPTR
- SCNi8
- SCNi16
- SCNi32
- SCNi64
- SCNiFAS
T8 - SCNiFAS
T16 - SCNiFAS
T32 - SCNiFAS
T64 - SCNiLEAS
T8 - SCNiLEAS
T16 - SCNiLEAS
T32 - SCNiLEAS
T64 - SCNiMAX
- SCNiPTR
- SCNo8
- SCNo16
- SCNo32
- SCNo64
- SCNoFAS
T8 - SCNoFAS
T16 - SCNoFAS
T32 - SCNoFAS
T64 - SCNoLEAS
T8 - SCNoLEAS
T16 - SCNoLEAS
T32 - SCNoLEAS
T64 - SCNoMAX
- SCNoPTR
- SCNu8
- SCNu16
- SCNu32
- SCNu64
- SCNuFAS
T8 - SCNuFAS
T16 - SCNuFAS
T32 - SCNuFAS
T64 - SCNuLEAS
T8 - SCNuLEAS
T16 - SCNuLEAS
T32 - SCNuLEAS
T64 - SCNuMAX
- SCNuPTR
- SCNx8
- SCNx16
- SCNx32
- SCNx64
- SCNxFAS
T8 - SCNxFAS
T16 - SCNxFAS
T32 - SCNxFAS
T64 - SCNxLEAS
T8 - SCNxLEAS
T16 - SCNxLEAS
T32 - SCNxLEAS
T64 - SCNxMAX
- SCNxPTR
- SIG_
ATOMIC_ MAX - SIG_
ATOMIC_ MIN - SIZE_
MAX - UINT8_
MAX - UINT16_
MAX - UINT32_
MAX - UINTPTR_
MAX - UINT_
FAST8_ MAX - UINT_
FAST16_ MAX - UINT_
FAST32_ MAX - UINT_
LEAS T8_ MAX - UINT_
LEAS T16_ MAX - UINT_
LEAS T32_ MAX - WCONTINUED
- WEXITED
- WINT_
MAX - WINT_
MIN - WNOHANG
- WNOWAIT
- WSTOPPED
- WUNTRACED
- _ALLOCA_
H - _ATFILE_
SOURCE - _BITS_
BYTESWAP_ H - _BITS_
ENDIANNESS_ H - _BITS_
ENDIAN_ H - _BITS_
PTHREADTYPES_ ARCH_ H - _BITS_
PTHREADTYPES_ COMMON_ H - _BITS_
STDINT_ INTN_ H - _BITS_
STDINT_ UINTN_ H - _BITS_
TIME64_ H - _BITS_
TYPESIZES_ H - _BITS_
TYPES_ H - _BITS_
UINTN_ IDENTITY_ H - _BITS_
WCHAR_ H - _DEFAULT_
SOURCE - _ENDIAN_
H - _FEATURES_
H - _INTTYPES_
H - _POSIX_
C_ SOURCE - _POSIX_
SOURCE - _STDC_
PREDEF_ H - _STDINT_
H - _STDLIB_
H - _STRUCT_
TIMESPEC - _SYS_
CDEFS_ H - _SYS_
SELECT_ H - _SYS_
TYPES_ H - _THREAD_
MUTEX_ INTERNAL_ H - _THREAD_
SHARED_ TYPES_ H - __
BIG_ ENDIAN - __
BIT_ TYPES_ DEFINED__ - __
BYTE_ ORDER - __
FD_ SETSIZE - __
FLOAT_ WORD_ ORDER - __
GLIBC_ MINOR__ - __
GLIBC_ USE_ DEPRECATED_ GETS - __
GLIBC_ USE_ DEPRECATED_ SCANF - __
GLIBC_ USE_ IEC_ 60559_ BFP_ EXT - __
GLIBC_ USE_ IEC_ 60559_ BFP_ EXT_ C2X - __
GLIBC_ USE_ IEC_ 60559_ EXT - __
GLIBC_ USE_ IEC_ 60559_ FUNCS_ EXT - __
GLIBC_ USE_ IEC_ 60559_ FUNCS_ EXT_ C2X - __
GLIBC_ USE_ IEC_ 60559_ TYPES_ EXT - __
GLIBC_ USE_ ISOC2X - __
GLIBC_ USE_ LIB_ EXT2 - __
GLIBC__ - __
GNU_ LIBRARY__ - __
HAVE_ DISTINCT_ FLOA T16 - __
HAVE_ DISTINCT_ FLOA T32 - __
HAVE_ DISTINCT_ FLOA T64 - __
HAVE_ DISTINCT_ FLOA T32X - __
HAVE_ DISTINCT_ FLOA T64X - __
HAVE_ DISTINCT_ FLOA T128 - __
HAVE_ DISTINCT_ FLOA T128X - __
HAVE_ FLOA T16 - __
HAVE_ FLOA T32 - __
HAVE_ FLOA T64 - __
HAVE_ FLOA T32X - __
HAVE_ FLOA T64X - __
HAVE_ FLOA T64X_ LONG_ DOUBLE - __
HAVE_ FLOA T128 - __
HAVE_ FLOA T128X - __
HAVE_ FLOATN_ NOT_ TYPEDEF - __
HAVE_ GENERIC_ SELECTION - __
INO_ T_ MATCHES_ INO64_ T - __
KERNEL_ OLD_ TIMEVAL_ MATCHES_ TIMEVA L64 - __
LDOUBLE_ REDIRECTS_ TO_ FLOA T128_ ABI - __
LITTLE_ ENDIAN - __
OFF_ T_ MATCHES_ OFF64_ T - __
PDP_ ENDIAN - __
PRI64_ PREFIX - __
PRIPTR_ PREFIX - __
PTHREAD_ MUTEX_ HAVE_ PREV - __
RLIM_ T_ MATCHES_ RLIM64_ T - __
SIZEOF_ PTHREAD_ ATTR_ T - __
SIZEOF_ PTHREAD_ BARRIERATTR_ T - __
SIZEOF_ PTHREAD_ BARRIER_ T - __
SIZEOF_ PTHREAD_ CONDATTR_ T - __
SIZEOF_ PTHREAD_ COND_ T - __
SIZEOF_ PTHREAD_ MUTEXATTR_ T - __
SIZEOF_ PTHREAD_ MUTEX_ T - __
SIZEOF_ PTHREAD_ RWLOCKATTR_ T - __
SIZEOF_ PTHREAD_ RWLOCK_ T - __
STATFS_ MATCHES_ STATF S64 - __
STDC_ IEC_ 559_ COMPLEX__ - __
STDC_ IEC_ 559__ - __
STDC_ IEC_ 60559_ BFP__ - __
STDC_ IEC_ 60559_ COMPLEX__ - __
STDC_ ISO_ 10646__ - __
SYSCALL_ WORDSIZE - __
TIMESIZE - __
USE_ ATFILE - __
USE_ FORTIFY_ LEVEL - __
USE_ ISOC11 - __
USE_ ISOC95 - __
USE_ ISOC99 - __
USE_ MISC - __
USE_ POSIX - __
USE_ POSI X2 - __
USE_ POSI X199309 - __
USE_ POSI X199506 - __
USE_ POSIX_ IMPLICITLY - __
USE_ XOPE N2K - __
USE_ XOPE N2K8 - __WALL
- __
WCLONE - __
WCOREFLAG - __
WNOTHREAD - __
WORDSIZE - __
WORDSIZE_ TIME64_ COMPA T32 - __
W_ CONTINUED - ____
gwchar_ t_ defined - __
bool_ true_ false_ are_ defined - __
clock_ t_ defined - __
clockid_ t_ defined - __
glibc_ c99_ flexarr_ available - __
have_ pthread_ attr_ t - __
ldiv_ t_ defined - __
lldiv_ t_ defined - __
sigset_ t_ defined - __
time_ t_ defined - __
timer_ t_ defined - __
timeval_ defined - acc_
config_ idle_ state_ t_ ACC_ CONFIG_ IDLE_ STATE_ DEEP_ SLEEP - The deepest state where as much of the sensor hardware is shut down.
- acc_
config_ idle_ state_ t_ ACC_ CONFIG_ IDLE_ STATE_ READY - The shallowest state where most of the sensor hardware is kept on.
- acc_
config_ idle_ state_ t_ ACC_ CONFIG_ IDLE_ STATE_ SLEEP - The deepest state where as much of the sensor hardware is shut down.
- acc_
config_ prf_ t_ ACC_ CONFIG_ PRF_ 5_ 2_ MHZ - 5.2 MHz
- acc_
config_ prf_ t_ ACC_ CONFIG_ PRF_ 6_ 5_ MHZ - 6.5 MHz
- acc_
config_ prf_ t_ ACC_ CONFIG_ PRF_ 8_ 7_ MHZ - 8.7 MHz
- acc_
config_ prf_ t_ ACC_ CONFIG_ PRF_ 13_ 0_ MHZ - 13.0 MHz
- acc_
config_ prf_ t_ ACC_ CONFIG_ PRF_ 15_ 6_ MHZ - 15.6 MHz
- acc_
config_ prf_ t_ ACC_ CONFIG_ PRF_ 19_ 5_ MHZ - 19.5 MHz
- acc_
config_ profile_ t_ ACC_ CONFIG_ PROFILE_ 1 - The profile with the highest depth resolution and lowest radar loop gain.
- acc_
config_ profile_ t_ ACC_ CONFIG_ PROFILE_ 2 - The profile with the highest depth resolution and lowest radar loop gain.
- acc_
config_ profile_ t_ ACC_ CONFIG_ PROFILE_ 3 - The profile with the highest depth resolution and lowest radar loop gain.
- acc_
config_ profile_ t_ ACC_ CONFIG_ PROFILE_ 4 - The profile with the highest depth resolution and lowest radar loop gain.
- acc_
config_ profile_ t_ ACC_ CONFIG_ PROFILE_ 5 - The profile with the lowest depth resolution and highest radar loop gain.
- acc_
detector_ distance_ peak_ sorting_ t_ ACC_ DETECTOR_ DISTANCE_ PEAK_ SORTING_ CLOSEST - Return peaks with the closest detection first.
- acc_
detector_ distance_ peak_ sorting_ t_ ACC_ DETECTOR_ DISTANCE_ PEAK_ SORTING_ STRONGEST - Return peaks with the peak with the highest RCS first.
- acc_
detector_ distance_ reflector_ shape_ t_ ACC_ DETECTOR_ DISTANCE_ REFLECTOR_ SHAPE_ GENERIC - Use a generic reflector shape for RCS calculation
- acc_
detector_ distance_ reflector_ shape_ t_ ACC_ DETECTOR_ DISTANCE_ REFLECTOR_ SHAPE_ PLANAR - Use a planar reflector shape for RCS calculation
- acc_
detector_ distance_ threshold_ method_ t_ ACC_ DETECTOR_ DISTANCE_ THRESHOLD_ METHOD_ CFAR - Uses the CFAR algorithm as a threshold
- acc_
detector_ distance_ threshold_ method_ t_ ACC_ DETECTOR_ DISTANCE_ THRESHOLD_ METHOD_ FIXED_ AMPLITUDE - Compares processed data against a fixed amplitude value
- acc_
detector_ distance_ threshold_ method_ t_ ACC_ DETECTOR_ DISTANCE_ THRESHOLD_ METHOD_ FIXED_ STRENGTH - Compares processed data against a fixed strength value
- acc_
detector_ distance_ threshold_ method_ t_ ACC_ DETECTOR_ DISTANCE_ THRESHOLD_ METHOD_ RECORDED - Compares processed data against a recorded threshold
- acc_
log_ level_ t_ ACC_ LOG_ LEVEL_ DEBUG - DEBUG log level.
- acc_
log_ level_ t_ ACC_ LOG_ LEVEL_ ERROR - ERROR log level.
- acc_
log_ level_ t_ ACC_ LOG_ LEVEL_ INFO - INFO log level.
- acc_
log_ level_ t_ ACC_ LOG_ LEVEL_ VERBOSE - VERBOSE log level.
- acc_
log_ level_ t_ ACC_ LOG_ LEVEL_ WARNING - WARNING log level.
- acc_
rss_ assembly_ test_ test_ id_ t_ ACC_ RSS_ ASSEMBLY_ TEST_ ID_ BASIC_ READ - Test SPI basic read functionality.
- acc_
rss_ assembly_ test_ test_ id_ t_ ACC_ RSS_ ASSEMBLY_ TEST_ ID_ CLOCK_ AND_ SUPPLY - Test clock and supply stability.
- acc_
rss_ assembly_ test_ test_ id_ t_ ACC_ RSS_ ASSEMBLY_ TEST_ ID_ COMMUNICATION - Test SPI communication.
- acc_
rss_ assembly_ test_ test_ id_ t_ ACC_ RSS_ ASSEMBLY_ TEST_ ID_ ENABLE_ PIN - Test enable pin.
- acc_
rss_ assembly_ test_ test_ id_ t_ ACC_ RSS_ ASSEMBLY_ TEST_ ID_ INTERRUPT - Test interrupt pin.
- acc_
rss_ assembly_ test_ test_ id_ t_ ACC_ RSS_ ASSEMBLY_ TEST_ ID_ SENSOR_ CALIBRATION - Test sensor calibration.
- acc_
rss_ test_ integration_ status_ t_ ACC_ RSS_ TEST_ INTEGRATION_ STATUS_ OK - The test status is OK
- acc_
rss_ test_ integration_ status_ t_ ACC_ RSS_ TEST_ INTEGRATION_ STATUS_ TIMEOUT - The test has timed out
- acc_
rss_ test_ state_ t_ ACC_ RSS_ TEST_ STATE_ COMPLETE - The test is complete
- acc_
rss_ test_ state_ t_ ACC_ RSS_ TEST_ STATE_ ONGOING - The test is ongoing, the application should call test function again
- acc_
rss_ test_ state_ t_ ACC_ RSS_ TEST_ STATE_ TOGGLE_ ENABLE_ PIN - The application should toggle enable pin and then call test function again
- acc_
rss_ test_ state_ t_ ACC_ RSS_ TEST_ STATE_ WAIT_ FOR_ INTERRUPT - The application should wait for interrupt and then call test function again
- false_
- true_
Functions§
- _Exit⚠
- __
ctype_ ⚠get_ mb_ cur_ max - a64l⚠
- abort⚠
- abs⚠
- acc_
config_ ⚠continuous_ sweep_ mode_ get - @brief Get continuous sweep mode
- acc_
config_ ⚠continuous_ sweep_ mode_ set - @brief Set continuous sweep mode
- acc_
config_ ⚠create - @brief Create a configuration
- acc_
config_ ⚠destroy - @brief Destroy a configuration freeing any resources allocated
- acc_
config_ ⚠double_ buffering_ get - @brief Get the double buffering configuration
- acc_
config_ ⚠double_ buffering_ set - @brief Enable or disable double buffering
- acc_
config_ ⚠enable_ loopback_ get - @brief Get the enable loopback configuration
- acc_
config_ ⚠enable_ loopback_ set - @brief Enable or disable loopback
- acc_
config_ ⚠enable_ tx_ get - @brief Get transmitter enable configuration
- acc_
config_ ⚠enable_ tx_ set - @brief Enable or disable the transmitter
- acc_
config_ ⚠frame_ rate_ get - @brief Get the frame rate
- acc_
config_ ⚠frame_ rate_ set - @brief Set the frame rate
- acc_
config_ ⚠hwaas_ get - @brief Get the hardware accelerated average samples (HWAAS)
- acc_
config_ ⚠hwaas_ set - @brief Set the hardware accelerated average samples (HWAAS)
- acc_
config_ ⚠inter_ frame_ idle_ state_ get - @brief Get inter frame idle state
- acc_
config_ ⚠inter_ frame_ idle_ state_ set - @brief Set inter frame idle state
- acc_
config_ ⚠inter_ sweep_ idle_ state_ get - @brief Get inter sweep idle state
- acc_
config_ ⚠inter_ sweep_ idle_ state_ set - @brief Set inter sweep idle state
- acc_
config_ ⚠log - @brief Print a configuration to the log
- acc_
config_ ⚠num_ points_ get - @brief Get the number of data points to measure
- acc_
config_ ⚠num_ points_ set - @brief Set the number of data points to measure
- acc_
config_ ⚠num_ subsweeps_ get - @brief Get the number of subsweeps to use
- acc_
config_ ⚠num_ subsweeps_ set - @brief Set the number of subsweeps to use
- acc_
config_ ⚠phase_ enhancement_ get - @brief Get the phase enhancement configuration
- acc_
config_ ⚠phase_ enhancement_ set - @brief Enable or disable phase enhancement
- acc_
config_ ⚠prf_ get - @brief Get Pulse Repetition Frequency
- acc_
config_ ⚠prf_ set - @brief Set Pulse Repetition Frequency
- acc_
config_ ⚠profile_ get - @brief Get the currently used profile
- acc_
config_ ⚠profile_ set - @brief Set a profile
- acc_
config_ ⚠receiver_ gain_ get - @brief Get receiver gain setting
- acc_
config_ ⚠receiver_ gain_ set - @brief Set receiver gain setting
- acc_
config_ ⚠start_ point_ get - @brief Get the starting point of the sweep
- acc_
config_ ⚠start_ point_ set - @brief Set the starting point of the sweep
- acc_
config_ ⚠step_ length_ get - @brief Get the step length in a sweep
- acc_
config_ ⚠step_ length_ set - @brief Set the step length in a sweep
- acc_
config_ ⚠subsweep_ enable_ loopback_ get - @brief Get the enable loopback configuration
- acc_
config_ ⚠subsweep_ enable_ loopback_ set - @brief Set the loopback enabled configuration
- acc_
config_ ⚠subsweep_ enable_ tx_ get - @brief Get transmitter enable mode
- acc_
config_ ⚠subsweep_ enable_ tx_ set - @brief Enable or disable the transmitter
- acc_
config_ ⚠subsweep_ hwaas_ get - @brief Get the hardware accelerated average samples (HWAAS)
- acc_
config_ ⚠subsweep_ hwaas_ set - @brief Set the hardware accelerated average samples (HWAAS)
- acc_
config_ ⚠subsweep_ num_ points_ get - @brief Get the number of data points to measure
- acc_
config_ ⚠subsweep_ num_ points_ set - @brief Set the number of data points to measure
- acc_
config_ ⚠subsweep_ phase_ enhancement_ get - @brief Get the phase enhancement enabled configuration
- acc_
config_ ⚠subsweep_ phase_ enhancement_ set - @brief Set the phase enhancement enabled configuration
- acc_
config_ ⚠subsweep_ prf_ get - @brief Get Pulse Repetition Frequency
- acc_
config_ ⚠subsweep_ prf_ set - @brief Set Pulse Repetition Frequency
- acc_
config_ ⚠subsweep_ profile_ get - @brief Get the currently used profile
- acc_
config_ ⚠subsweep_ profile_ set - @brief Set a profile
- acc_
config_ ⚠subsweep_ receiver_ gain_ get - @brief Get receiver gain setting
- acc_
config_ ⚠subsweep_ receiver_ gain_ set - @brief Set receiver gain setting
- acc_
config_ ⚠subsweep_ start_ point_ get - @brief Get the starting point of the sweep
- acc_
config_ ⚠subsweep_ start_ point_ set - @brief Set the starting point of the sweep
- acc_
config_ ⚠subsweep_ step_ length_ get - @brief Get the step length in a sweep
- acc_
config_ ⚠subsweep_ step_ length_ set - @brief Set the step length in a sweep
- acc_
config_ ⚠sweep_ rate_ get - @brief Get the sweep rate
- acc_
config_ ⚠sweep_ rate_ set - @brief Set the sweep rate
- acc_
config_ ⚠sweeps_ per_ frame_ get - @brief Get the number of sweeps per frame
- acc_
config_ ⚠sweeps_ per_ frame_ set - @brief Set sweeps per frame
- acc_
detector_ ⚠distance_ calibrate - @brief Calibrate detector
- acc_
detector_ ⚠distance_ config_ close_ range_ leakage_ cancellation_ get - @brief Get if close range leakage cancellation is enabled
- acc_
detector_ ⚠distance_ config_ close_ range_ leakage_ cancellation_ set - @brief Enable close range leakage cancellation
- acc_
detector_ ⚠distance_ config_ create - @brief Create a Distance Detector configuration
- acc_
detector_ ⚠distance_ config_ destroy - @brief Destroy Distance Detector configuration
- acc_
detector_ ⚠distance_ config_ end_ get - @brief Get end of measured interval (m)
- acc_
detector_ ⚠distance_ config_ end_ set - @brief Set end of measured interval (m)
- acc_
detector_ ⚠distance_ config_ fixed_ amplitude_ threshold_ value_ get - @brief Get fixed amplitude threshold value
- acc_
detector_ ⚠distance_ config_ fixed_ amplitude_ threshold_ value_ set - @brief Set fixed amplitude threshold value
- acc_
detector_ ⚠distance_ config_ fixed_ strength_ threshold_ value_ get - @brief Get fixed strength threshold value
- acc_
detector_ ⚠distance_ config_ fixed_ strength_ threshold_ value_ set - @brief Set fixed strength threshold value
- acc_
detector_ ⚠distance_ config_ log - @brief Log Distance configuration, typically through printf
- acc_
detector_ ⚠distance_ config_ max_ profile_ get - @brief Get maximum Profile
- acc_
detector_ ⚠distance_ config_ max_ profile_ set - @brief Set maximum Profile
- acc_
detector_ ⚠distance_ config_ max_ step_ length_ get - @brief Get maximum step length
- acc_
detector_ ⚠distance_ config_ max_ step_ length_ set - @brief Set maximum step length
- acc_
detector_ ⚠distance_ config_ num_ frames_ recorded_ threshold_ get - @brief Get number of frames to use for recorded threshold
- acc_
detector_ ⚠distance_ config_ num_ frames_ recorded_ threshold_ set - @brief Set number of frames to use for recorded threshold
- acc_
detector_ ⚠distance_ config_ peak_ sorting_ get - @brief Get peak sorting method
- acc_
detector_ ⚠distance_ config_ peak_ sorting_ set - @brief Set peak sorting method
- acc_
detector_ ⚠distance_ config_ prf_ override_ get - @brief Get if PRF override is set and its value
- acc_
detector_ ⚠distance_ config_ prf_ override_ set - @brief Override automatically set PRF
- acc_
detector_ ⚠distance_ config_ reflector_ shape_ get - @brief Get reflector shape
- acc_
detector_ ⚠distance_ config_ reflector_ shape_ set - @brief Set reflector shape
- acc_
detector_ ⚠distance_ config_ signal_ quality_ get - @brief Get signal quality
- acc_
detector_ ⚠distance_ config_ signal_ quality_ set - @brief Set signal quality (dB)
- acc_
detector_ ⚠distance_ config_ start_ get - @brief Get start of measured interval (m)
- acc_
detector_ ⚠distance_ config_ start_ set - @brief Set start of measured interval (m)
- acc_
detector_ ⚠distance_ config_ threshold_ method_ get - @brief Get threshold method
- acc_
detector_ ⚠distance_ config_ threshold_ method_ set - @brief Set threshold method
- acc_
detector_ ⚠distance_ config_ threshold_ sensitivity_ get - @brief Get threshold sensitivity
- acc_
detector_ ⚠distance_ config_ threshold_ sensitivity_ set - @brief Set threshold sensitivity
- acc_
detector_ ⚠distance_ create - @brief Create Distance Detector handle using the provided Distance Detector configuration
- acc_
detector_ ⚠distance_ destroy - @brief Destroy Distance Detector handle, freeing its resources
- acc_
detector_ ⚠distance_ get_ sizes - @brief Get the memory size needed to use the Distance Detector API functions
- acc_
detector_ ⚠distance_ prepare - @brief Prepare the Detector for measurements
- acc_
detector_ ⚠distance_ process - @brief Process sensor data into a Detector result
- acc_
detector_ ⚠distance_ update_ calibration - @brief Perform a subset of the full Detector calibration
- acc_
detector_ ⚠presence_ config_ auto_ profile_ get - @brief Get if automatic selection of profile based on start point of measurement is enabled
- acc_
detector_ ⚠presence_ config_ auto_ profile_ set - @brief Enable automatic selection of profile based on start point of measurement
- acc_
detector_ ⚠presence_ config_ auto_ step_ length_ get - @brief Get if automatic selection of step length based on the profile is enabled
- acc_
detector_ ⚠presence_ config_ auto_ step_ length_ set - @brief Enable automatic selection of step length based on the profile
- acc_
detector_ ⚠presence_ config_ automatic_ subsweeps_ get - @brief Get if automatic subsweeps should be used
- acc_
detector_ ⚠presence_ config_ automatic_ subsweeps_ set - @brief Set if automatic subsweeps should be used
- acc_
detector_ ⚠presence_ config_ create - @brief Create a configuration for a presence detector
- acc_
detector_ ⚠presence_ config_ destroy - @brief Destroy a presence detector configuration
- acc_
detector_ ⚠presence_ config_ end_ get - @brief Get the end point of measurement interval in meters
- acc_
detector_ ⚠presence_ config_ end_ set - @brief Set the end point of measurement interval in meters
- acc_
detector_ ⚠presence_ config_ frame_ rate_ app_ driven_ get - @brief Get if the application should maintain the requested frame rate
- acc_
detector_ ⚠presence_ config_ frame_ rate_ app_ driven_ set - @brief Set if the application should maintain the requested frame rate
- acc_
detector_ ⚠presence_ config_ frame_ rate_ get - @brief Get the frame rate
- acc_
detector_ ⚠presence_ config_ frame_ rate_ set - @brief Set the frame rate
- acc_
detector_ ⚠presence_ config_ hwaas_ get - @brief Get the hardware accelerated average samples (HWAAS)
- acc_
detector_ ⚠presence_ config_ hwaas_ set - @brief Set the hardware accelerated average samples (HWAAS)
- acc_
detector_ ⚠presence_ config_ inter_ detection_ get - @brief Get if inter-frame presence detection is enabled
- acc_
detector_ ⚠presence_ config_ inter_ detection_ set - @brief Set inter-frame presence detection
- acc_
detector_ ⚠presence_ config_ inter_ detection_ threshold_ get - @brief Get the detection threshold for the inter-frame presence detection
- acc_
detector_ ⚠presence_ config_ inter_ detection_ threshold_ set - @brief Set the detection threshold for the inter-frame presence detection
- acc_
detector_ ⚠presence_ config_ inter_ frame_ deviation_ time_ const_ get - @brief Get the time constant of the low pass filter for the inter-frame deviation between fast and slow
- acc_
detector_ ⚠presence_ config_ inter_ frame_ deviation_ time_ const_ set - @brief Set the time constant of the low pass filter for the inter-frame deviation between fast and slow
- acc_
detector_ ⚠presence_ config_ inter_ frame_ fast_ cutoff_ get - @brief Get the cutoff frequency of the low pass filter for the fast filtered absolute sweep mean
- acc_
detector_ ⚠presence_ config_ inter_ frame_ fast_ cutoff_ set - @brief Set the cutoff frequency of the low pass filter for the fast filtered absolute sweep mean
- acc_
detector_ ⚠presence_ config_ inter_ frame_ idle_ state_ get - @brief Get inter frame idle state
- acc_
detector_ ⚠presence_ config_ inter_ frame_ idle_ state_ set - @brief Set inter frame idle state
- acc_
detector_ ⚠presence_ config_ inter_ frame_ presence_ timeout_ get - @brief Get the inter-frame presence timeout in seconds
- acc_
detector_ ⚠presence_ config_ inter_ frame_ presence_ timeout_ set - @brief Set the inter-frame presence timeout in seconds
- acc_
detector_ ⚠presence_ config_ inter_ frame_ slow_ cutoff_ get - @brief Get the cutoff frequency of the low pass filter for the slow filtered absolute sweep mean
- acc_
detector_ ⚠presence_ config_ inter_ frame_ slow_ cutoff_ set - @brief Set the cutoff frequency of the low pass filter for the slow filtered absolute sweep mean
- acc_
detector_ ⚠presence_ config_ inter_ output_ time_ const_ get - @brief Get the time constant for the output in the inter-frame part
- acc_
detector_ ⚠presence_ config_ inter_ output_ time_ const_ set - @brief Set the time constant for the output in the inter-frame part
- acc_
detector_ ⚠presence_ config_ inter_ phase_ boost_ get - @brief Get if inter-frame phase boost is enabled
- acc_
detector_ ⚠presence_ config_ inter_ phase_ boost_ set - @brief Set inter-frame phase boost
- acc_
detector_ ⚠presence_ config_ intra_ detection_ get - @brief Get if frame intra-frame presence detection is enabled
- acc_
detector_ ⚠presence_ config_ intra_ detection_ set - @brief Set intra-frame presence detection
- acc_
detector_ ⚠presence_ config_ intra_ detection_ threshold_ get - @brief Get the detection threshold for the intra-frame presence detection
- acc_
detector_ ⚠presence_ config_ intra_ detection_ threshold_ set - @brief Set the detection threshold for the intra-frame presence detection
- acc_
detector_ ⚠presence_ config_ intra_ frame_ time_ const_ get - @brief Get the time constant for the depthwise filtering in the intra-frame part
- acc_
detector_ ⚠presence_ config_ intra_ frame_ time_ const_ set - @brief Set the time constant for the depthwise filtering in the intra-frame part
- acc_
detector_ ⚠presence_ config_ intra_ output_ time_ const_ get - @brief Get the time constant for the output in the intra-frame part
- acc_
detector_ ⚠presence_ config_ intra_ output_ time_ const_ set - @brief Set the time constant for the output in the intra-frame part
- acc_
detector_ ⚠presence_ config_ log - @brief Print a configuration to the log
- acc_
detector_ ⚠presence_ config_ profile_ get - @brief Get the currently set profile
- acc_
detector_ ⚠presence_ config_ profile_ set - @brief Set a profile
- acc_
detector_ ⚠presence_ config_ reset_ filters_ on_ prepare_ get - @brief Get if the presence filters should reset on prepare
- acc_
detector_ ⚠presence_ config_ reset_ filters_ on_ prepare_ set - @brief Set if the presence filters should reset on prepare
- acc_
detector_ ⚠presence_ config_ sensor_ get - @brief Get sensor ID
- acc_
detector_ ⚠presence_ config_ sensor_ set - @brief Set sensor ID
- acc_
detector_ ⚠presence_ config_ signal_ quality_ get - @brief Get signal quality
- acc_
detector_ ⚠presence_ config_ signal_ quality_ set - @brief Set signal quality
- acc_
detector_ ⚠presence_ config_ start_ get - @brief Get the start point of measurement interval in meters
- acc_
detector_ ⚠presence_ config_ start_ set - @brief Set the start point of measurement interval in meters
- acc_
detector_ ⚠presence_ config_ step_ length_ get - @brief Get the step length in points
- acc_
detector_ ⚠presence_ config_ step_ length_ set - @brief Set the step length in points
- acc_
detector_ ⚠presence_ config_ sweeps_ per_ frame_ get - @brief Get the number of sweeps per frame
- acc_
detector_ ⚠presence_ config_ sweeps_ per_ frame_ set - @brief Set the number of sweeps per frame
- acc_
detector_ ⚠presence_ create - @brief Create a presence detector with the provided configuration
- acc_
detector_ ⚠presence_ destroy - @brief Destroy a presence detector identified with the provided handle
- acc_
detector_ ⚠presence_ get_ buffer_ size - @brief Get the buffer size needed for the provided presence detector handle
- acc_
detector_ ⚠presence_ get_ distance_ m - @brief Calculate distance in meter for a point in a sweep (including subsweeps)
- acc_
detector_ ⚠presence_ prepare - @brief Prepare the detector to do a measurement
- acc_
detector_ ⚠presence_ process - @brief Process the data according to the configuration used in @ref acc_detector_presence_config_create
- acc_
detector_ ⚠presence_ processing_ config_ create - @brief Create a configuration for a presence processor
- acc_
detector_ ⚠presence_ processing_ config_ destroy - @brief Destroy a presence processor configuration
- acc_
detector_ ⚠presence_ processing_ config_ frame_ rate_ get - @brief Get the frame rate
- acc_
detector_ ⚠presence_ processing_ config_ frame_ rate_ set - @brief Set the frame rate
- acc_
detector_ ⚠presence_ processing_ config_ inter_ detection_ get - @brief Get if inter-frame presence detection is enabled
- acc_
detector_ ⚠presence_ processing_ config_ inter_ detection_ set - @brief Set inter-frame presence detection
- acc_
detector_ ⚠presence_ processing_ config_ inter_ detection_ threshold_ get - @brief Get the detection threshold for the inter-frame presence detection
- acc_
detector_ ⚠presence_ processing_ config_ inter_ detection_ threshold_ set - @brief Set the detection threshold for the inter-frame presence detection
- acc_
detector_ ⚠presence_ processing_ config_ inter_ frame_ deviation_ time_ const_ get - @brief Get the time constant of the low pass filter for the inter-frame deviation between fast and slow
- acc_
detector_ ⚠presence_ processing_ config_ inter_ frame_ deviation_ time_ const_ set - @brief Set the time constant of the low pass filter for the inter-frame deviation between fast and slow
- acc_
detector_ ⚠presence_ processing_ config_ inter_ frame_ fast_ cutoff_ get - @brief Get the cutoff frequency of the low pass filter for the fast filtered absolute sweep mean
- acc_
detector_ ⚠presence_ processing_ config_ inter_ frame_ fast_ cutoff_ set - @brief Set the cutoff frequency of the low pass filter for the fast filtered absolute sweep mean
- acc_
detector_ ⚠presence_ processing_ config_ inter_ frame_ presence_ timeout_ get - @brief Get the inter-frame presence timeout in seconds
- acc_
detector_ ⚠presence_ processing_ config_ inter_ frame_ presence_ timeout_ set - @brief Set the inter-frame presence timeout in seconds
- acc_
detector_ ⚠presence_ processing_ config_ inter_ frame_ slow_ cutoff_ get - @brief Get the cutoff frequency of the low pass filter for the slow filtered absolute sweep mean
- acc_
detector_ ⚠presence_ processing_ config_ inter_ frame_ slow_ cutoff_ set - @brief Set the cutoff frequency of the low pass filter for the slow filtered absolute sweep mean
- acc_
detector_ ⚠presence_ processing_ config_ inter_ output_ time_ const_ get - @brief Get the time constant for the output in the inter-frame part
- acc_
detector_ ⚠presence_ processing_ config_ inter_ output_ time_ const_ set - @brief Set the time constant for the output in the inter-frame part
- acc_
detector_ ⚠presence_ processing_ config_ inter_ phase_ boost_ get - @brief Get if inter-frame phase boost is enabled
- acc_
detector_ ⚠presence_ processing_ config_ inter_ phase_ boost_ set - @brief Set inter-frame phase boost
- acc_
detector_ ⚠presence_ processing_ config_ intra_ detection_ get - @brief Get if frame intra-frame presence detection is enabled
- acc_
detector_ ⚠presence_ processing_ config_ intra_ detection_ set - @brief Set intra-frame presence detection
- acc_
detector_ ⚠presence_ processing_ config_ intra_ detection_ threshold_ get - @brief Get the detection threshold for the intra-frame presence detection
- acc_
detector_ ⚠presence_ processing_ config_ intra_ detection_ threshold_ set - @brief Set the detection threshold for the intra-frame presence detection
- acc_
detector_ ⚠presence_ processing_ config_ intra_ frame_ time_ const_ get - @brief Get the time constant for the depthwise filtering in the intra-frame part
- acc_
detector_ ⚠presence_ processing_ config_ intra_ frame_ time_ const_ set - @brief Set the time constant for the depthwise filtering in the intra-frame part
- acc_
detector_ ⚠presence_ processing_ config_ intra_ output_ time_ const_ get - @brief Get the time constant for the output in the intra-frame part
- acc_
detector_ ⚠presence_ processing_ config_ intra_ output_ time_ const_ set - @brief Set the time constant for the output in the intra-frame part
- acc_
detector_ ⚠presence_ processing_ create - @brief Create a processing handle with the provided base configuration
- acc_
detector_ ⚠presence_ processing_ destroy - @brief Destroy a processing handle
- acc_
detector_ ⚠presence_ processing_ get_ buffer_ size - @brief Get the buffer size needed for presence processing
- acc_
detector_ ⚠presence_ processing_ process - @brief Process sensor data
- acc_
detector_ ⚠presence_ processing_ reset - @brief Reset existing processing buffers
- acc_
processing_ ⚠create - @brief Create a processing instance with the provided configuration
- acc_
processing_ ⚠destroy - @brief Destroy a processing instance identified with the provided processing handle
- acc_
processing_ ⚠execute - @brief Process the data according to the configuration used in create
- acc_
processing_ ⚠get_ temperature_ adjustment_ factors - @brief Calculate temperature compensation for mean sweep and background noise (tx off) standard deviation
- acc_
processing_ ⚠meter_ to_ points - @brief Convert a distance or step length in meter to points
- acc_
processing_ ⚠points_ to_ meter - @brief Convert a distance or step length in points to meter
- acc_
rss_ ⚠assembly_ test_ create - @brief Create a sensor assembly test instance
- acc_
rss_ ⚠assembly_ test_ destroy - @brief Destroy a sensor assembly test instance freeing any resources allocated.
- acc_
rss_ ⚠assembly_ test_ disable - @brief Disable a test in assembly test
- acc_
rss_ ⚠assembly_ test_ disable_ all_ tests - @brief Disable all assembly tests
- acc_
rss_ ⚠assembly_ test_ enable - @brief Enable a test in assembly test
- acc_
rss_ ⚠assembly_ test_ enable_ all_ tests - @brief Enable all assembly tests
- acc_
rss_ ⚠assembly_ test_ enable_ diagnostic_ logs - @brief Enable diagnostic logs for the assembly test,
- acc_
rss_ ⚠assembly_ test_ execute - @brief Execute the assembly test
- acc_
rss_ ⚠assembly_ test_ get_ results - @brief A function to get the results from the sensor assembly test
- acc_
rss_ ⚠get_ buffer_ size - @brief Get the buffer size needed for the specified config
- acc_
rss_ ⚠hal_ register - @brief Register an integration
- acc_
rss_ ⚠set_ log_ level - @brief Set the log level that determines when the integration HAL logger function is called
- acc_
sensor_ ⚠calibrate - @brief Calibrate a sensor
- acc_
sensor_ ⚠connected - @brief Check if a sensor is connected and responsive
- acc_
sensor_ ⚠create - @brief Create a sensor instance
- acc_
sensor_ ⚠destroy - @brief Destroy a sensor instance freeing any resources allocated.
- acc_
sensor_ ⚠get_ cal_ info - @brief Gets calibration information from a calibration result
- acc_
sensor_ ⚠hibernate_ off - @brief Restore sensor after exiting hibernation
- acc_
sensor_ ⚠hibernate_ on - @brief Prepare sensor for entering hibernation
- acc_
sensor_ ⚠measure - @brief Start a radar measurement with previously prepared configuration
- acc_
sensor_ ⚠prepare - @brief Prepare a sensor to do a measurement
- acc_
sensor_ ⚠read - @brief Read out radar data
- acc_
sensor_ ⚠status - @brief Check the status of the sensor
- acc_
sensor_ ⚠validate_ calibration - @brief Validate calibration result
- acc_
version_ ⚠get - @brief Get the version of the Acconeer software
- acc_
version_ ⚠get_ hex - @brief Get the version of the Acconeer software as a hex number
- aligned_
alloc ⚠ - alloca⚠
- at_
quick_ ⚠exit - atexit⚠
- atof⚠
- atoi⚠
- atol⚠
- atoll⚠
- bsearch⚠
- c_
log_ ⚠stub - calloc⚠
- clearenv⚠
- div⚠
- drand48⚠
- drand48_
r ⚠ - ecvt⚠
- ecvt_r⚠
- erand48⚠
- erand48_
r ⚠ - exit⚠
- fcvt⚠
- fcvt_r⚠
- free⚠
- gcvt⚠
- getenv⚠
- getloadavg⚠
- getsubopt⚠
- imaxabs⚠
- imaxdiv⚠
- initstate⚠
- initstate_
r ⚠ - jrand48⚠
- jrand48_
r ⚠ - l64a⚠
- labs⚠
- lcong48⚠
- lcong48_
r ⚠ - ldiv⚠
- llabs⚠
- lldiv⚠
- lrand48⚠
- lrand48_
r ⚠ - malloc⚠
- mblen⚠
- mbstowcs⚠
- mbtowc⚠
- mkdtemp⚠
- mkstemp⚠
- mkstemps⚠
- mktemp⚠
- mrand48⚠
- mrand48_
r ⚠ - nrand48⚠
- nrand48_
r ⚠ - on_exit⚠
- posix_
memalign ⚠ - pselect⚠
- putenv⚠
- qecvt⚠
- qecvt_r⚠
- qfcvt⚠
- qfcvt_r⚠
- qgcvt⚠
- qsort⚠
- quick_
exit ⚠ - rand⚠
- rand_r⚠
- random⚠
- random_
r ⚠ - realloc⚠
- reallocarray⚠
- realpath⚠
- rpmatch⚠
- seed48⚠
- seed48_
r ⚠ - select⚠
- setenv⚠
- setstate⚠
- setstate_
r ⚠ - srand⚠
- srand48⚠
- srand48_
r ⚠ - srandom⚠
- srandom_
r ⚠ - strtod⚠
- strtof⚠
- strtoimax⚠
- strtol⚠
- strtold⚠
- strtoll⚠
- strtoq⚠
- strtoul⚠
- strtoull⚠
- strtoumax⚠
- strtouq⚠
- system⚠
- unsetenv⚠
- valloc⚠
- wcstoimax⚠
- wcstombs⚠
- wcstoumax⚠
- wctomb⚠
Type Aliases§
- _Float32
- _Float64
- _Float32x
- _Float64x
- __
blkcnt64_ t - __
blkcnt_ t - __
blksize_ t - __
caddr_ t - __
clock_ t - __
clockid_ t - __
compar_ fn_ t - __
daddr_ t - __dev_t
- __
fd_ mask - __
fsblkcnt64_ t - __
fsblkcnt_ t - __
fsfilcnt64_ t - __
fsfilcnt_ t - __
fsword_ t - __gid_t
- __
gwchar_ t - __id_t
- __
ino64_ t - __ino_t
- __
int8_ t - __
int16_ t - __
int32_ t - __
int64_ t - __
int_ least8_ t - __
int_ least16_ t - __
int_ least32_ t - __
int_ least64_ t - __
intmax_ t - __
intptr_ t - __key_t
- __
loff_ t - __
mode_ t - __
nlink_ t - __
off64_ t - __off_t
- __pid_t
- __
pthread_ list_ t - __
pthread_ slist_ t - __
quad_ t - __
rlim64_ t - __
rlim_ t - __
sig_ atomic_ t - __
socklen_ t - __
ssize_ t - __
suseconds64_ t - __
suseconds_ t - __
syscall_ slong_ t - __
syscall_ ulong_ t - __
thrd_ t - __
time_ t - __
timer_ t - __tss_t
- __
u_ char - __u_int
- __
u_ long - __
u_ quad_ t - __
u_ short - __uid_t
- __
uint8_ t - __
uint16_ t - __
uint32_ t - __
uint64_ t - __
uint_ least8_ t - __
uint_ least16_ t - __
uint_ least32_ t - __
uint_ least64_ t - __
uintmax_ t - __
useconds_ t - acc_
config_ idle_ state_ t - @brief Idle state
- acc_
config_ prf_ t - @brief Pulse Repetition Frequency
- acc_
config_ profile_ t - @brief Profile
- acc_
config_ t - acc_
detector_ distance_ config_ t - @brief Distance Detector configuration
- acc_
detector_ distance_ handle_ t - @brief Distance Detector handle
- acc_
detector_ distance_ peak_ sorting_ t - @brief Enum for peak sorting algorithms
- acc_
detector_ distance_ reflector_ shape_ t - @brief Enum for reflector shapes
- acc_
detector_ distance_ threshold_ method_ t - @brief Enum for threshold methods
- acc_
detector_ presence_ config_ t - acc_
detector_ presence_ handle_ t - acc_
detector_ presence_ processing_ config_ t - acc_
detector_ presence_ processing_ handle_ t - acc_
hal_ log_ function_ t - @brief Definition of a log function
- acc_
hal_ mem_ alloc_ function_ t - @brief Definition of a memory allocation function
- acc_
hal_ mem_ free_ function_ t - @brief Definition of a memory free function
- acc_
hal_ sensor_ transfer8_ function_ t - @brief Definition of a sensor transfer function
- acc_
hal_ sensor_ transfer16_ function_ t - @brief Definition of an optimized 16-bit sensor transfer function
- acc_
log_ level_ t - @brief This enum represents the different log levels for RSS
- acc_
processing_ t - acc_
rss_ assembly_ test_ t - acc_
rss_ assembly_ test_ test_ id_ t - @brief Test identity enum for acc_rss_assembly_test
- acc_
rss_ test_ integration_ status_ t - @brief Integration status for rss tests
- acc_
rss_ test_ state_ t - @brief Return code for rss tests
- acc_
sensor_ id_ t - @brief Type representing a sensor ID
- acc_
sensor_ t - blkcnt_
t - blksize_
t - caddr_t
- clock_t
- clockid_
t - daddr_t
- dev_t
- fd_mask
- fsblkcnt_
t - fsfilcnt_
t - fsid_t
- gid_t
- id_t
- ino_t
- int_
fast8_ t - int_
fast16_ t - int_
fast32_ t - int_
fast64_ t - int_
least8_ t - int_
least16_ t - int_
least32_ t - int_
least64_ t - intmax_
t - key_t
- loff_t
- mode_t
- nlink_t
- off_t
- pid_t
- pthread_
key_ t - pthread_
once_ t - pthread_
spinlock_ t - pthread_
t - quad_t
- register_
t - sigset_
t - suseconds_
t - time_t
- timer_t
- u_char
- u_int
- u_
int8_ t - u_
int16_ t - u_
int32_ t - u_
int64_ t - u_long
- u_
quad_ t - u_short
- uid_t
- uint
- uint_
fast8_ t - uint_
fast16_ t - uint_
fast32_ t - uint_
fast64_ t - uint_
least8_ t - uint_
least16_ t - uint_
least32_ t - uint_
least64_ t - uintmax_
t - ulong
- ushort
- wchar_t