mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
85 lines
2.3 KiB
C
85 lines
2.3 KiB
C
/*
|
|
* Copyright (C) 2016 Inria
|
|
*
|
|
* 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 IO1 Xplained extension driver.
|
|
*
|
|
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include "assert.h"
|
|
#include "log.h"
|
|
#include "saul_reg.h"
|
|
#include "io1_xplained.h"
|
|
#include "io1_xplained_params.h"
|
|
|
|
/**
|
|
* @brief Define the number of configured sensors
|
|
*/
|
|
#define IO1_XPLAINED_NUM ARRAY_SIZE(io1_xplained_params)
|
|
|
|
/**
|
|
* @brief Allocation of memory for device descriptors
|
|
*/
|
|
static io1_xplained_t io1_xplained_devs[IO1_XPLAINED_NUM];
|
|
|
|
/**
|
|
* @brief Memory for the SAUL registry entries
|
|
*/
|
|
static saul_reg_t saul_entries[IO1_XPLAINED_NUM * 4];
|
|
|
|
/**
|
|
* @brief Define the number of saul info
|
|
*/
|
|
#define IO1_XPLAINED_INFO_NUM ARRAY_SIZE(io1_xplained_saul_info)
|
|
|
|
/**
|
|
* @name Reference the driver structs.
|
|
* @{
|
|
*/
|
|
extern const saul_driver_t gpio_out_saul_driver;
|
|
extern const saul_driver_t io1_xplained_temperature_saul_driver;
|
|
/** @} */
|
|
|
|
void auto_init_io1_xplained(void)
|
|
{
|
|
/* There are 4 saul reg info for each configured device */
|
|
assert(IO1_XPLAINED_NUM == IO1_XPLAINED_INFO_NUM);
|
|
|
|
for (unsigned i = 0; i < IO1_XPLAINED_NUM; i++) {
|
|
if (io1_xplained_init(&io1_xplained_devs[i],
|
|
&io1_xplained_params[i]) != IO1_XPLAINED_OK) {
|
|
LOG_ERROR("Unable to initialize IO1 Xplained #%i\n", i);
|
|
continue;
|
|
}
|
|
|
|
/* Temperature */
|
|
saul_entries[i * 4].dev = &(io1_xplained_devs[i]);
|
|
saul_entries[i * 4].name = io1_xplained_saul_info[i][0].name;
|
|
saul_entries[i * 4].driver = &io1_xplained_temperature_saul_driver;
|
|
saul_reg_add(&(saul_entries[i * 4]));
|
|
|
|
/* GPIOs */
|
|
for (unsigned j = 0;
|
|
j < ARRAY_SIZE(io1_xplained_saul_gpios);
|
|
j++) {
|
|
saul_reg_t *entry = &saul_entries[i * 4 + j + 1];
|
|
entry->dev = &(io1_xplained_saul_gpios[j]);
|
|
entry->name = io1_xplained_saul_info[i][j + 1].name;
|
|
entry->driver = &gpio_out_saul_driver;
|
|
saul_reg_add(entry);
|
|
}
|
|
}
|
|
}
|