saul, adc: add config for remote boards
This commit is contained in:
parent
bfae64d670
commit
2806484f2c
@ -4,6 +4,8 @@ ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
|
|||||||
USEMODULE += gnrc_netdev
|
USEMODULE += gnrc_netdev
|
||||||
USEMODULE += netdev_ieee802154
|
USEMODULE += netdev_ieee802154
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter saul_default,$(USEMODULE)))
|
ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||||
USEMODULE += saul_gpio
|
USEMODULE += saul_gpio
|
||||||
|
USEMODULE += saul_adc
|
||||||
endif
|
endif
|
||||||
|
|||||||
53
boards/remote-pa/include/adc_params.h
Normal file
53
boards/remote-pa/include/adc_params.h
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016 Eistec AB
|
||||||
|
*
|
||||||
|
* 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 boards_remote
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief Board specific configuration of direct mapped ADC
|
||||||
|
*
|
||||||
|
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
||||||
|
* @author Antonio Lignan <alinan@zolertia.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef ADC_PARAMS_H
|
||||||
|
#define ADC_PARAMS_H
|
||||||
|
|
||||||
|
#include "board.h"
|
||||||
|
#include "saul/periph.h"
|
||||||
|
#include "periph/adc.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief ADC configuration
|
||||||
|
*/
|
||||||
|
static const saul_adc_params_t saul_adc_params[] =
|
||||||
|
{
|
||||||
|
{
|
||||||
|
.name = "ADC2",
|
||||||
|
.line = ADC_LINE(0),
|
||||||
|
.res = ADC_RES_12BIT,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.name = "ADC3",
|
||||||
|
.line = ADC_LINE(1),
|
||||||
|
.res = ADC_RES_12BIT,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* ADC_PARAMS_H */
|
||||||
|
/** @} */
|
||||||
58
boards/remote-reva/include/adc_params.h
Normal file
58
boards/remote-reva/include/adc_params.h
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016 Eistec AB
|
||||||
|
*
|
||||||
|
* 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 boards_remote
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief Board specific configuration of direct mapped ADC
|
||||||
|
*
|
||||||
|
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
||||||
|
* @author Antonio Lignan <alinan@zolertia.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef ADC_PARAMS_H
|
||||||
|
#define ADC_PARAMS_H
|
||||||
|
|
||||||
|
#include "board.h"
|
||||||
|
#include "saul/periph.h"
|
||||||
|
#include "periph/adc.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief ADC configuration
|
||||||
|
*/
|
||||||
|
static const saul_adc_params_t saul_adc_params[] =
|
||||||
|
{
|
||||||
|
{
|
||||||
|
.name = "ADC1",
|
||||||
|
.line = ADC_LINE(0),
|
||||||
|
.res = ADC_RES_12BIT,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.name = "ADC2",
|
||||||
|
.line = ADC_LINE(1),
|
||||||
|
.res = ADC_RES_12BIT,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.name = "ADC3",
|
||||||
|
.line = ADC_LINE(2),
|
||||||
|
.res = ADC_RES_12BIT,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* ADC_PARAMS_H */
|
||||||
|
/** @} */
|
||||||
58
boards/remote-revb/include/adc_params.h
Normal file
58
boards/remote-revb/include/adc_params.h
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016 Eistec AB
|
||||||
|
*
|
||||||
|
* 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 boards_remote
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief Board specific configuration of direct mapped ADC in Revision B
|
||||||
|
*
|
||||||
|
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
||||||
|
* @author Antonio Lignan <alinan@zolertia.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef ADC_PARAMS_H
|
||||||
|
#define ADC_PARAMS_H
|
||||||
|
|
||||||
|
#include "board.h"
|
||||||
|
#include "saul/periph.h"
|
||||||
|
#include "periph/adc.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief ADC configuration
|
||||||
|
*/
|
||||||
|
static const saul_adc_params_t saul_adc_params[] =
|
||||||
|
{
|
||||||
|
{
|
||||||
|
.name = "ADC1",
|
||||||
|
.line = ADC_LINE(0),
|
||||||
|
.res = ADC_RES_12BIT,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.name = "ADC2",
|
||||||
|
.line = ADC_LINE(1),
|
||||||
|
.res = ADC_RES_12BIT,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.name = "ADC3",
|
||||||
|
.line = ADC_LINE(2),
|
||||||
|
.res = ADC_RES_12BIT,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* ADC_PARAMS_H */
|
||||||
|
/** @} */
|
||||||
Loading…
x
Reference in New Issue
Block a user