example_bring_up.c

This is an example on how the assembly test can be used to ease bring-up
The example executes as follows:

// Copyright (c) Acconeer AB, 2022-2024
// 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_version.h"
/** \example example_bring_up.c
* @brief This is an example on how the assembly test can be used to ease bring-up
* @n
* The example executes as follows:
* - Register the RSS HAL
* - Create assembly test
* - Enable one assembly test at a time
* - Power on the sensor
* - Enable the sensor
* - Exceute assembly test
* - Disable the sensor
* - Power off the sensor
* - Destroy assembly test
*/
#define SENSOR_ID (1U)
#define SENSOR_TIMEOUT_MS (1000U)
static bool run_test(acc_rss_assembly_test_t *assembly_test, acc_sensor_id_t sensor_id);
int app_main(int argc, char *argv[]);
int app_main(int argc, char *argv[])
{
(void)argc;
(void)argv;
bool test_ok = true;
printf("Acconeer software version %s\n", acc_version_get());
{
return EXIT_FAILURE;
}
if (buffer == NULL)
{
printf("Assembly test: Memory allocation failed\n");
return EXIT_FAILURE;
}
// Create
if (assembly_test == NULL)
{
printf("Bring-up: Could not create assembly test\n");
return EXIT_FAILURE;
}
// Enable and run: Basic read test
if (!run_test(assembly_test, SENSOR_ID))
{
printf("Bring-up: Basic read test failed\n");
test_ok = false;
}
// Enable and run: Communication test
if (!run_test(assembly_test, SENSOR_ID))
{
printf("Bring-up: Communication test failed\n");
test_ok = false;
}
// Enable and run: Enable test
if (!run_test(assembly_test, SENSOR_ID))
{
printf("Bring-up: Enable test failed\n");
test_ok = false;
}
// Enable and run: Interrupt test
if (!run_test(assembly_test, SENSOR_ID))
{
printf("Bring-up: Interrupt test failed\n");
test_ok = false;
}
// Enable and run: Clock and Supply test
if (!run_test(assembly_test, SENSOR_ID))
{
printf("Bring-up: Clock and Supply test failed\n");
test_ok = false;
}
// Enable and run: Sensor calibration test
if (!run_test(assembly_test, SENSOR_ID))
{
printf("Bring-up: Calibration test failed\n");
test_ok = false;
}
// Destroy
if (buffer != NULL)
{
}
if (test_ok)
{
printf("Bring-up: All tests passed\n");
printf("Application finished OK\n");
return EXIT_SUCCESS;
}
return EXIT_SUCCESS;
}
static bool run_test(acc_rss_assembly_test_t *assembly_test, acc_sensor_id_t sensor_id)
{
bool all_passed = true;
do
{
assembly_test_state = acc_rss_assembly_test_execute(assembly_test, integration_status);
switch (assembly_test_state)
{
integration_status = ACC_RSS_TEST_INTEGRATION_STATUS_OK;
break;
{
/* Wait for interrupt failed */
}
else
{
integration_status = ACC_RSS_TEST_INTEGRATION_STATUS_OK;
}
break;
default:
integration_status = ACC_RSS_TEST_INTEGRATION_STATUS_OK;
break;
}
} while (assembly_test_state != ACC_RSS_TEST_STATE_COMPLETE);
uint16_t nbr_of_test_results = 0U;
const acc_rss_assembly_test_result_t *test_results = acc_rss_assembly_test_get_results(assembly_test, &nbr_of_test_results);
for (uint16_t idx = 0; idx < nbr_of_test_results; idx++)
{
printf("Bring-up: '%s' [%s]\n", test_results[idx].test_name, test_results[idx].test_result ? "PASS" : "FAIL");
if (!test_results[idx].test_result)
{
all_passed = false;
}
}
return all_passed;
}
ACC_RSS_TEST_STATE_WAIT_FOR_INTERRUPT
@ ACC_RSS_TEST_STATE_WAIT_FOR_INTERRUPT
Definition: acc_rss_a121.h:41
acc_rss_assembly_test_result_t
The result struct of acc_rss_assembly_test.
Definition: acc_rss_a121.h:85
app_main
int app_main(int argc, char *argv[])
Assembly test example.
Definition: example_bring_up.c:47
acc_rss_assembly_test_execute
acc_rss_test_state_t acc_rss_assembly_test_execute(acc_rss_assembly_test_t *assembly_test, acc_rss_test_integration_status_t integration_status)
Execute the assembly test.
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_espidf_xe121.c:192
acc_rss_a121.h
acc_rss_assembly_test_get_results
const acc_rss_assembly_test_result_t * acc_rss_assembly_test_get_results(const acc_rss_assembly_test_t *assembly_test, uint16_t *nbr_of_test_results)
A function to get the results from the sensor assembly test.
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_espidf_xe121.c:185
ACC_RSS_ASSEMBLY_TEST_ID_ENABLE_PIN
@ ACC_RSS_ASSEMBLY_TEST_ID_ENABLE_PIN
Definition: acc_rss_a121.h:71
acc_version.h
ACC_RSS_ASSEMBLY_TEST_ID_CLOCK_AND_SUPPLY
@ ACC_RSS_ASSEMBLY_TEST_ID_CLOCK_AND_SUPPLY
Definition: acc_rss_a121.h:75
ACC_RSS_ASSEMBLY_TEST_ID_BASIC_READ
@ ACC_RSS_ASSEMBLY_TEST_ID_BASIC_READ
Definition: acc_rss_a121.h:67
ACC_RSS_TEST_INTEGRATION_STATUS_TIMEOUT
@ ACC_RSS_TEST_INTEGRATION_STATUS_TIMEOUT
Definition: acc_rss_a121.h:56
ACC_RSS_ASSEMBLY_TEST_ID_SENSOR_CALIBRATION
@ ACC_RSS_ASSEMBLY_TEST_ID_SENSOR_CALIBRATION
Definition: acc_rss_a121.h:77
acc_integration.h
ACC_RSS_ASSEMBLY_TEST_MIN_BUFFER_SIZE
#define ACC_RSS_ASSEMBLY_TEST_MIN_BUFFER_SIZE
The minimum buffer size needed for the assembly test.
Definition: acc_rss_a121.h:27
acc_rss_assembly_test_destroy
void acc_rss_assembly_test_destroy(acc_rss_assembly_test_t *assembly_test)
Destroy a sensor assembly test instance freeing any resources allocated.
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_espidf_xe121.c:135
acc_integration_mem_alloc
void * acc_integration_mem_alloc(size_t size)
Allocate dynamic memory.
Definition: acc_integration_esp32.c:38
SENSOR_ID
#define SENSOR_ID
Definition: example_bring_up.c:37
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_RSS_TEST_INTEGRATION_STATUS_OK
@ ACC_RSS_TEST_INTEGRATION_STATUS_OK
Definition: acc_rss_a121.h:54
acc_rss_assembly_test_create
acc_rss_assembly_test_t * acc_rss_assembly_test_create(acc_sensor_id_t sensor_id, void *buffer, uint32_t buffer_size)
Create a sensor assembly test instance.
SENSOR_TIMEOUT_MS
#define SENSOR_TIMEOUT_MS
Definition: example_bring_up.c:39
ACC_RSS_TEST_STATE_ONGOING
@ ACC_RSS_TEST_STATE_ONGOING
Definition: acc_rss_a121.h:37
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_espidf_xe121.c:100
acc_hal_integration_a121.h
acc_version_get
const char * acc_version_get(void)
Get the version of the Acconeer software.
acc_hal_integration_sensor_enable
void acc_hal_integration_sensor_enable(acc_sensor_id_t sensor_id)
Enable sensor.
Definition: acc_hal_integration_espidf_xe121.c:199
acc_hal_definitions_a121.h
ACC_RSS_TEST_STATE_COMPLETE
@ ACC_RSS_TEST_STATE_COMPLETE
Definition: acc_rss_a121.h:43
ACC_RSS_ASSEMBLY_TEST_ID_COMMUNICATION
@ ACC_RSS_ASSEMBLY_TEST_ID_COMMUNICATION
Definition: acc_rss_a121.h:69
acc_rss_test_state_t
acc_rss_test_state_t
Return code for rss tests.
Definition: acc_rss_a121.h:34
acc_hal_integration_sensor_disable
void acc_hal_integration_sensor_disable(acc_sensor_id_t sensor_id)
Disable sensor.
Definition: acc_hal_integration_espidf_xe121.c:214
acc_sensor_id_t
uint32_t acc_sensor_id_t
Type representing a sensor ID.
Definition: acc_definitions_common.h:14
acc_rss_test_integration_status_t
acc_rss_test_integration_status_t
Integration status for rss tests.
Definition: acc_rss_a121.h:51
acc_rss_assembly_test_t
struct acc_rss_assembly_test acc_rss_assembly_test_t
Definition: acc_rss_a121.h:98
hal
static const acc_hal_a121_t hal
Definition: acc_hal_integration_espidf_xe121.c:121
acc_rss_assembly_test_disable_all_tests
void acc_rss_assembly_test_disable_all_tests(acc_rss_assembly_test_t *assembly_test)
Disable all assembly tests.
ACC_RSS_TEST_STATE_TOGGLE_ENABLE_PIN
@ ACC_RSS_TEST_STATE_TOGGLE_ENABLE_PIN
Definition: acc_rss_a121.h:39
acc_integration_mem_free
void acc_integration_mem_free(void *ptr)
Free dynamic memory.
Definition: acc_integration_esp32.c:57
acc_definitions_common.h
ACC_RSS_ASSEMBLY_TEST_ID_INTERRUPT
@ ACC_RSS_ASSEMBLY_TEST_ID_INTERRUPT
Definition: acc_rss_a121.h:73
run_test
static bool run_test(acc_rss_assembly_test_t *assembly_test, acc_sensor_id_t sensor_id)
Definition: example_bring_up.c:153
acc_rss_assembly_test_enable
void acc_rss_assembly_test_enable(acc_rss_assembly_test_t *assembly_test, acc_rss_assembly_test_test_id_t test_id)
Enable a test in assembly test.
acc_definitions_a121.h