1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/saul/init_devs/auto_init_tsl4531x.c
2020-10-22 11:13:08 +02:00

82 lines
2.0 KiB
C

/*
* Copyright (C) 2016 Inria
* Copyright (C) 2018 Freie Universität Berlin
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup sys_auto_init_saul
* @{
*
* @file
* @brief Auto initialization of TSL4531x driver.
*
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
* @author Daniel Petry <daniel.petry@fu-berlin.de>
*
* Adapted from auto_init for the TSL2561 driver.
*
* @}
*/
#include <assert.h>
#include "log.h"
#include "saul_reg.h"
#include "tsl4531x.h"
#include "tsl4531x_params.h"
/**
* @brief Define the number of configured sensors
*/
#define TSL4531X_NUMOF ARRAY_SIZE(tsl4531x_params)
/**
* @brief Allocation of memory for device descriptors
*/
static tsl4531x_t tsl4531x_devs[TSL4531X_NUMOF];
static tsl4531x_t *tsl4531x_devs_p[TSL4531X_NUMOF];
/**
* @brief Memory for the SAUL registry entries
*/
static saul_reg_t saul_entries[TSL4531X_NUMOF];
/**
* @brief Define the number of saul info
*/
#define TSL4531X_INFO_NUMOF ARRAY_SIZE(tsl4531x_saul_info)
/**
* @brief Reference the driver structs.
*/
extern const saul_driver_t tsl4531x_saul_driver;
void auto_init_tsl4531x(void)
{
assert(TSL4531X_NUMOF == TSL4531X_INFO_NUMOF);
for (unsigned i = 0; i < TSL4531X_NUMOF; i++) {
printf("[auto_init_saul] initializing tsl4531x #%u\n", i);
tsl4531x_devs_p[i] = &tsl4531x_devs[i];
if (tsl4531x_init(&tsl4531x_devs[i],
&tsl4531x_params[i]) != 0) {
LOG_ERROR("[auto_init_saul] error initializing tsl4531x #%u\n", i);
continue;
}
/* Fill the saul_entries struct */
saul_entries[i].dev = &(tsl4531x_devs_p[i]);
saul_entries[i].name = tsl4531x_saul_info[i].name;
saul_entries[i].driver = &tsl4531x_saul_driver;
/* register to saul */
saul_reg_add(&(saul_entries[i]));
}
}