1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #13163 from gschorcht/board/mega-xplained/fix_adc_lines

boards/mega-xplained: fix ADC line defintions
This commit is contained in:
Marian Buschsieweke 2020-01-23 11:34:38 +01:00 committed by GitHub
commit f58b82bd39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,9 +113,9 @@ extern "C" {
* @name ADC NTC, light sensor, and filter lines
* @{
*/
#define NTC_OUTPUT GPIO_PIN(PORT_A, 5)
#define LIGHT_SENSOR_OUTPUT GPIO_PIN(PORT_A, 6)
#define FILTER_OUTPUT GPIO_PIN(PORT_A, 7)
#define NTC_OUTPUT ADC_LINE(7)
#define LIGHT_SENSOR_OUTPUT ADC_LINE(6)
#define FILTER_OUTPUT ADC_LINE(5)
/** @} */
/**