example_detector_presence_low_power_hibernate.c

This is an example on how to put the sensor in hibernation and the system in a low power state between measurements
The example executes as follows:

// Copyright (c) Acconeer AB, 2022-2025
// All rights reserved
// This file is subject to the terms and conditions defined in the file
// 'LICENSES/license_acconeer.txt', (BSD 3-Clause License) which is part
// of this source code package.
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "acc_rss_a121.h"
#include "acc_sensor.h"
#include "acc_version.h"
/** \example example_detector_presence_low_power_hibernate.c
* @brief This is an example on how to put the sensor in hibernation and the system in a low power state between measurements
* @n
* The example executes as follows:
* - Create a presence configuration
* - Create a sensor instance
* - Enable sensor
* - Create a detector instance
* - Calibrate the sensor
* - Prepare the detector
* - Enter hibernation
* - Loop forever:
* - Exit hibernation
* - Perform a sensor measurement and read out the data
* - Enter hibernation
* - Process the measurement and get detector result
* - Put the system in deep sleep for a specified amount of time
* - Destroy the configuration
* - Destroy the detector instance
* - Destroy the sensor instance
*/
typedef enum
{
#define SENSOR_ID (1U)
#define SENSOR_TIMEOUT_MS (1000U)
#define DEFAULT_PRESET_CONFIG PRESENCE_PRESET_CONFIG_MEDIUM_RANGE
static bool do_sensor_calibration(acc_sensor_t *sensor, acc_cal_result_t *cal_result, void *buffer, uint32_t buffer_size);
static void cleanup(acc_detector_presence_handle_t *presence_handle,
void *buffer);
int acconeer_main(int argc, char *argv[]);
int acconeer_main(int argc, char *argv[])
{
(void)argc;
(void)argv;
acc_detector_presence_config_t *presence_config = NULL;
acc_detector_presence_handle_t *presence_handle = NULL;
void *buffer = NULL;
uint32_t buffer_size = 0U;
printf("Acconeer software version %s\n", acc_version_get());
{
return EXIT_FAILURE;
}
if (presence_config == NULL)
{
printf("acc_detector_presence_config_create() failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
set_config(presence_config, DEFAULT_PRESET_CONFIG);
uint32_t sleep_time_ms = (uint32_t)(1000.0f / acc_detector_presence_config_frame_rate_get(presence_config));
presence_handle = acc_detector_presence_create(presence_config, &metadata);
if (presence_handle == NULL)
{
printf("acc_detector_presence_create() failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
{
printf("acc_detector_presence_get_buffer_size() failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
if (buffer == NULL)
{
printf("buffer allocation failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
if (sensor == NULL)
{
printf("acc_sensor_create() failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
acc_cal_result_t cal_result;
{
printf("do_sensor_calibration() failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
// Reset sensor after calibration by disabling it
if (!acc_detector_presence_prepare(presence_handle, presence_config, sensor, &cal_result, buffer, buffer_size))
{
printf("acc_detector_presence_prepare() failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
{
printf("acc_sensor_hibernate_on failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
while (true)
{
{
printf("acc_sensor_hibernate_off failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
{
printf("acc_sensor_measure failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
{
printf("Sensor interrupt timeout\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
{
printf("acc_sensor_read failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
{
printf("acc_sensor_hibernate_on failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
if (!acc_detector_presence_process(presence_handle, buffer, &result))
{
printf("acc_detector_presence_process failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
/* If "calibration_needed" is indicated, the sensor needs to be recalibrated. */
if (result.processing_result.calibration_needed)
{
printf("Sensor recalibration needed ... \n");
{
printf("acc_sensor_hibernate_off failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
{
printf("do_sensor_calibration() failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
printf("Sensor recalibration done!\n");
/* Before measuring again, the sensor needs to be prepared through the detector. */
if (!acc_detector_presence_prepare(presence_handle, presence_config, sensor, &cal_result, buffer, buffer_size))
{
printf("acc_detector_presence_prepare() failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
{
printf("acc_sensor_hibernate_on failed\n");
cleanup(presence_handle, presence_config, sensor, buffer);
return EXIT_FAILURE;
}
}
else
{
}
}
cleanup(presence_handle, presence_config, sensor, buffer);
printf("Application finished OK\n");
return EXIT_SUCCESS;
}
static void cleanup(acc_detector_presence_handle_t *presence_handle,
void *buffer)
{
if (presence_config != NULL)
{
}
if (presence_handle != NULL)
{
}
if (sensor != NULL)
{
}
if (buffer != NULL)
{
}
}
{
switch (preset)
{
// Add configuration of the detector here
break;
acc_detector_presence_config_start_set(presence_config, 0.06f);
acc_detector_presence_config_end_set(presence_config, 1.0f);
break;
acc_detector_presence_config_end_set(presence_config, 2.5f);
break;
acc_detector_presence_config_end_set(presence_config, 7.5f);
break;
acc_detector_presence_config_start_set(presence_config, 0.38f);
acc_detector_presence_config_end_set(presence_config, 0.67f);
break;
}
}
static bool do_sensor_calibration(acc_sensor_t *sensor, acc_cal_result_t *cal_result, void *buffer, uint32_t buffer_size)
{
bool status = false;
bool cal_complete = false;
const uint16_t calibration_retries = 1U;
// Random disturbances may cause the calibration to fail. At failure, retry at least once.
for (uint16_t i = 0; !status && (i <= calibration_retries); i++)
{
// Reset sensor before calibration by disabling/enabling it
do
{
status = acc_sensor_calibrate(sensor, &cal_complete, cal_result, buffer, buffer_size);
if (status && !cal_complete)
{
}
} while (status && !cal_complete);
}
if (status)
{
/* Reset sensor after calibration by disabling/enabling it */
}
return status;
}
{
{
printf("Motion\n");
}
else
{
printf("No motion\n");
}
// Score and distance is multiplied by 1000 to avoid printing floats
printf("Intra presence score: %d, Inter presence score: %d, Distance (mm): %d\n",
(int)(result->intra_presence_score * 1000.0f),
(int)(result->inter_presence_score * 1000.0f),
(int)(result->presence_distance * 1000.0f));
}
acc_detector_presence_config_inter_detection_set
void acc_detector_presence_config_inter_detection_set(acc_detector_presence_config_t *presence_config, bool enable)
Set inter-frame presence detection.
acc_detector_presence_config_sweeps_per_frame_set
void acc_detector_presence_config_sweeps_per_frame_set(acc_detector_presence_config_t *presence_config, uint16_t sweeps_per_frame)
Set the number of sweeps per frame.
acc_hal_integration_sensor_supply_off
void acc_hal_integration_sensor_supply_off(acc_sensor_id_t sensor_id)
Power off sensor supply.
Definition: acc_hal_integration_stm32cube_xm.c:104
acc_rss_a121.h
cargo_result_t::calibration_needed
bool calibration_needed
Definition: example_cargo.h:112
acc_hal_integration_sensor_supply_on
void acc_hal_integration_sensor_supply_on(acc_sensor_id_t sensor_id)
Power on sensor supply.
Definition: acc_hal_integration_stm32cube_xm.c:99
acc_detector_presence_destroy
void acc_detector_presence_destroy(acc_detector_presence_handle_t *presence_handle)
Destroy a presence detector identified with the provided handle.
acc_detector_presence_config_hwaas_set
void acc_detector_presence_config_hwaas_set(acc_detector_presence_config_t *presence_config, uint16_t hwaas)
Set the hardware accelerated average samples (HWAAS)
acc_sensor_read
bool acc_sensor_read(const acc_sensor_t *sensor, void *buffer, uint32_t buffer_size)
Read out radar data.
SENSOR_TIMEOUT_MS
#define SENSOR_TIMEOUT_MS
Definition: example_detector_presence_low_power_hibernate.c:55
buffer
void * buffer
Definition: i2c_example_cargo.c:40
acc_version.h
acc_detector_presence_config_inter_frame_deviation_time_const_set
void acc_detector_presence_config_inter_frame_deviation_time_const_set(acc_detector_presence_config_t *presence_config, float inter_frame_deviation_time_const)
Set the time constant of the low pass filter for the inter-frame deviation between fast and slow.
PRESENCE_PRESET_CONFIG_NONE
@ PRESENCE_PRESET_CONFIG_NONE
Definition: example_detector_presence_low_power_hibernate.c:47
acc_detector_presence_config_auto_profile_set
void acc_detector_presence_config_auto_profile_set(acc_detector_presence_config_t *presence_config, bool enable)
Enable automatic selection of profile based on start point of measurement.
cleanup
static void cleanup(acc_detector_presence_handle_t *presence_handle, acc_detector_presence_config_t *presence_config, acc_sensor_t *sensor, void *buffer)
Definition: example_detector_presence_low_power_hibernate.c:279
acc_cal_result_t
The result from a completed calibration.
Definition: acc_definitions_a121.h:30
acc_detector_presence_config_frame_rate_set
void acc_detector_presence_config_frame_rate_set(acc_detector_presence_config_t *presence_config, float frame_rate)
Set the frame rate.
ACC_CONFIG_IDLE_STATE_DEEP_SLEEP
@ ACC_CONFIG_IDLE_STATE_DEEP_SLEEP
Definition: acc_definitions_a121.h:73
ACC_CONFIG_PROFILE_5
@ ACC_CONFIG_PROFILE_5
Definition: acc_definitions_a121.h:57
acc_integration.h
acc_detector_presence_get_buffer_size
bool acc_detector_presence_get_buffer_size(const acc_detector_presence_handle_t *presence_handle, uint32_t *buffer_size)
Get the buffer size needed for the provided presence detector handle.
print_result
static void print_result(acc_detector_presence_result_t *result)
Definition: example_detector_presence_low_power_hibernate.c:452
cargo_result_t::inter_presence_score
float inter_presence_score
Definition: example_cargo.h:137
acc_hal_rss_integration_get_implementation
const acc_hal_a121_t * acc_hal_rss_integration_get_implementation(void)
Get hal implementation reference.
Definition: acc_hal_integration_stm32cube_xm.c:152
acc_detector_presence_config_intra_detection_threshold_set
void acc_detector_presence_config_intra_detection_threshold_set(acc_detector_presence_config_t *presence_config, float intra_detection_threshold)
Set the detection threshold for the intra-frame presence detection.
acc_integration_mem_alloc
void * acc_integration_mem_alloc(size_t size)
Allocate dynamic memory.
Definition: acc_integration_stm32.c:592
acc_hal_a121_t
Definition: acc_hal_definitions_a121.h:82
acc_rss_hal_register
bool acc_rss_hal_register(const acc_hal_a121_t *hal)
Register an integration.
acc_integration_set_periodic_wakeup
void acc_integration_set_periodic_wakeup(uint32_t time_msec)
Set up a periodic timer used to wake up the system from sleep.
Definition: acc_integration_stm32.c:496
acc_sensor.h
acc_detector_presence_result_t
Presence detector results container.
Definition: acc_detector_presence.h:46
buffer_size
uint32_t buffer_size
Definition: i2c_example_cargo.c:41
PRESENCE_PRESET_CONFIG_SHORT_RANGE
@ PRESENCE_PRESET_CONFIG_SHORT_RANGE
Definition: example_detector_presence_low_power_hibernate.c:48
acc_detector_presence_config_inter_frame_presence_timeout_set
void acc_detector_presence_config_inter_frame_presence_timeout_set(acc_detector_presence_config_t *presence_config, uint16_t inter_frame_presence_timeout)
Set the inter-frame presence timeout in seconds.
sensor
acc_sensor_t * sensor
Definition: i2c_example_cargo.c:33
acc_detector_presence_config_destroy
void acc_detector_presence_config_destroy(acc_detector_presence_config_t *presence_config)
Destroy a presence detector configuration.
acc_detector_presence_metadata_t
Definition: acc_detector_presence.h:88
acc_hal_integration_wait_for_sensor_interrupt
bool acc_hal_integration_wait_for_sensor_interrupt(acc_sensor_id_t sensor_id, uint32_t timeout_ms)
Wait for a sensor interrupt.
Definition: acc_hal_integration_stm32cube_xm.c:130
PRESENCE_PRESET_CONFIG_LONG_RANGE
@ PRESENCE_PRESET_CONFIG_LONG_RANGE
Definition: example_detector_presence_low_power_hibernate.c:50
acc_hal_integration_a121.h
acc_detector_presence_config_end_set
void acc_detector_presence_config_end_set(acc_detector_presence_config_t *presence_config, float end)
Set the end point of measurement interval in meters.
acc_detector_presence_config_intra_output_time_const_set
void acc_detector_presence_config_intra_output_time_const_set(acc_detector_presence_config_t *presence_config, float intra_output_time_const)
Set the time constant for the output in the intra-frame part.
acc_sensor_hibernate_off
bool acc_sensor_hibernate_off(const acc_sensor_t *sensor)
Restore sensor after exiting hibernation.
result
cargo_result_t result
Definition: i2c_example_cargo.c:43
acc_version_get
const char * acc_version_get(void)
Get the version of the Acconeer software.
printf
#define printf
Definition: printf.h:60
acc_hal_integration_sensor_enable
void acc_hal_integration_sensor_enable(acc_sensor_id_t sensor_id)
Enable sensor.
Definition: acc_hal_integration_stm32cube_xm.c:109
acc_detector_presence_config_inter_frame_idle_state_set
void acc_detector_presence_config_inter_frame_idle_state_set(acc_detector_presence_config_t *presence_config, acc_config_idle_state_t idle_state)
Set inter frame idle state.
PRESENCE_PRESET_CONFIG_MEDIUM_RANGE
@ PRESENCE_PRESET_CONFIG_MEDIUM_RANGE
Definition: example_detector_presence_low_power_hibernate.c:49
acc_hal_definitions_a121.h
acc_detector_presence_process
bool acc_detector_presence_process(acc_detector_presence_handle_t *presence_handle, void *buffer, acc_detector_presence_result_t *result)
Process the data according to the configuration used in acc_detector_presence_config_create.
acc_detector_presence_config_inter_output_time_const_set
void acc_detector_presence_config_inter_output_time_const_set(acc_detector_presence_config_t *presence_config, float inter_output_time_const)
Set the time constant for the output in the inter-frame part.
acc_detector_presence_config_reset_filters_on_prepare_set
void acc_detector_presence_config_reset_filters_on_prepare_set(acc_detector_presence_config_t *presence_config, bool enable)
Set if the presence filters should reset on prepare.
acconeer_main
int acconeer_main(int argc, char *argv[])
Assembly test example.
Definition: example_detector_presence_low_power_hibernate.c:72
acc_detector_presence_prepare
bool acc_detector_presence_prepare(const acc_detector_presence_handle_t *presence_handle, acc_detector_presence_config_t *presence_config, acc_sensor_t *sensor, const acc_cal_result_t *cal_result, void *buffer, uint32_t buffer_size)
Prepare the detector to do a measurement.
acc_detector_presence_config_intra_detection_set
void acc_detector_presence_config_intra_detection_set(acc_detector_presence_config_t *presence_config, bool enable)
Set intra-frame presence detection.
cargo_result_t::intra_presence_score
float intra_presence_score
Definition: example_cargo.h:140
acc_hal_integration_sensor_disable
void acc_hal_integration_sensor_disable(acc_sensor_id_t sensor_id)
Disable sensor.
Definition: acc_hal_integration_stm32cube_xm.c:119
SENSOR_ID
#define SENSOR_ID
Definition: example_detector_presence_low_power_hibernate.c:54
acc_detector_presence_config_t
struct acc_detector_presence_config acc_detector_presence_config_t
Definition: acc_detector_presence.h:41
presence_preset_config_t
presence_preset_config_t
Definition: example_detector_presence_low_power_hibernate.c:45
do_sensor_calibration
static bool do_sensor_calibration(acc_sensor_t *sensor, acc_cal_result_t *cal_result, void *buffer, uint32_t buffer_size)
Definition: example_detector_presence_low_power_hibernate.c:418
acc_detector_presence_config_inter_frame_slow_cutoff_set
void acc_detector_presence_config_inter_frame_slow_cutoff_set(acc_detector_presence_config_t *presence_config, float inter_frame_slow_cutoff)
Set the cutoff frequency of the low pass filter for the slow filtered absolute sweep mean.
acc_sensor_hibernate_on
bool acc_sensor_hibernate_on(acc_sensor_t *sensor)
Prepare sensor for entering hibernation.
acc_sensor_status
void acc_sensor_status(const acc_sensor_t *sensor)
Check the status of the sensor.
acc_detector_presence_config_frame_rate_get
float acc_detector_presence_config_frame_rate_get(const acc_detector_presence_config_t *presence_config)
Get the frame rate.
DEFAULT_PRESET_CONFIG
#define DEFAULT_PRESET_CONFIG
Definition: example_detector_presence_low_power_hibernate.c:57
acc_detector_presence_config_profile_set
void acc_detector_presence_config_profile_set(acc_detector_presence_config_t *presence_config, acc_config_profile_t profile)
Set a profile.
acc_integration_mem_free
void acc_integration_mem_free(void *ptr)
Free dynamic memory.
Definition: acc_integration_stm32.c:602
acc_integration_sleep_until_periodic_wakeup
void acc_integration_sleep_until_periodic_wakeup(void)
Put the system in sleep until the periodic timer triggers.
Definition: acc_integration_stm32.c:552
acc_definitions_common.h
acc_detector_presence_create
acc_detector_presence_handle_t * acc_detector_presence_create(acc_detector_presence_config_t *presence_config, acc_detector_presence_metadata_t *metadata)
Create a presence detector with the provided configuration.
acc_detector_presence_handle_t
struct acc_detector_presence_handle acc_detector_presence_handle_t
Definition: acc_detector_presence.h:34
acc_sensor_calibrate
bool acc_sensor_calibrate(acc_sensor_t *sensor, bool *cal_complete, acc_cal_result_t *cal_result, void *buffer, uint32_t buffer_size)
Calibrate a sensor.
acc_detector_presence_config_create
acc_detector_presence_config_t * acc_detector_presence_config_create(void)
Create a configuration for a presence detector.
cargo_result_t::presence_detected
bool presence_detected
Definition: example_cargo.h:134
acc_detector_presence_config_signal_quality_set
void acc_detector_presence_config_signal_quality_set(acc_detector_presence_config_t *presence_config, float signal_quality)
Set signal quality.
acc_detector_presence_config_start_set
void acc_detector_presence_config_start_set(acc_detector_presence_config_t *presence_config, float start)
Set the start point of measurement interval in meters.
set_config
static void set_config(acc_detector_presence_config_t *presence_config, presence_preset_config_t preset)
Definition: example_detector_presence_low_power_hibernate.c:308
acc_detector_presence.h
acc_detector_presence_config_inter_detection_threshold_set
void acc_detector_presence_config_inter_detection_threshold_set(acc_detector_presence_config_t *presence_config, float inter_detection_threshold)
Set the detection threshold for the inter-frame presence detection.
acc_sensor_measure
bool acc_sensor_measure(acc_sensor_t *sensor)
Start a radar measurement with previously prepared configuration.
acc_detector_presence_config_auto_step_length_set
void acc_detector_presence_config_auto_step_length_set(acc_detector_presence_config_t *presence_config, bool enable)
Enable automatic selection of step length based on the profile.
acc_sensor_t
struct acc_sensor acc_sensor_t
Definition: acc_sensor.h:31
acc_detector_presence_config_intra_frame_time_const_set
void acc_detector_presence_config_intra_frame_time_const_set(acc_detector_presence_config_t *presence_config, float intra_frame_time_const)
Set the time constant for the depthwise filtering in the intra-frame part.
acc_detector_presence_config_automatic_subsweeps_set
void acc_detector_presence_config_automatic_subsweeps_set(acc_detector_presence_config_t *presence_config, bool automatic_subsweeps)
Set if automatic subsweeps should be used.
acc_sensor_destroy
void acc_sensor_destroy(acc_sensor_t *sensor)
Destroy a sensor instance freeing any resources allocated.
acc_definitions_a121.h
PRESENCE_PRESET_CONFIG_LOW_POWER_WAKEUP
@ PRESENCE_PRESET_CONFIG_LOW_POWER_WAKEUP
Definition: example_detector_presence_low_power_hibernate.c:51
acc_detector_presence_config_frame_rate_app_driven_set
void acc_detector_presence_config_frame_rate_app_driven_set(acc_detector_presence_config_t *presence_config, bool enable)
Set if the application should maintain the requested frame rate.
acc_detector_presence_config_inter_frame_fast_cutoff_set
void acc_detector_presence_config_inter_frame_fast_cutoff_set(acc_detector_presence_config_t *presence_config, float inter_frame_fast_cutoff)
Set the cutoff frequency of the low pass filter for the fast filtered absolute sweep mean.
acc_sensor_create
acc_sensor_t * acc_sensor_create(acc_sensor_id_t sensor_id)
Create a sensor instance.