mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-16 13:41:56 +00:00
Enables the ADC on the RT1060 evaluation board. Channels 0 and 15 of ADC1 are available on pins 1 and 0 of J23, respectively. 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 0>;
|
|
};
|
|
};
|