mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-16 15:01:55 +00:00
Added ADC support to RT1010 evaluation board. ADC channels 1 and 2 are exposed as pins 10 and 12 of J26. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
13 lines
192 B
Plaintext
13 lines
192 B
Plaintext
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Copyright (c) 2021 NXP
|
|
*/
|
|
|
|
/ {
|
|
zephyr,user {
|
|
/* adjust channel number according to pinmux in board.dts */
|
|
io-channels = <&adc1 1>;
|
|
};
|
|
};
|