You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
545 B
34 lines
545 B
/* |
|
* Copyright (c) 2021 The ZMK Contributors |
|
* |
|
* SPDX-License-Identifier: MIT |
|
*/ |
|
|
|
|
|
/ { |
|
chosen { |
|
zephyr,console = &cdc_acm_uart; |
|
zmk,battery = &vbatt; |
|
}; |
|
|
|
vbatt: vbatt { |
|
compatible = "zmk,battery-voltage-divider"; |
|
label = "BATTERY"; |
|
io-channels = <&adc 7>; |
|
power-gpios = <&gpio0 14 (GPIO_OPEN_DRAIN | GPIO_ACTIVE_LOW)>; |
|
output-ohms = <1000000>; |
|
full-ohms = <(1000000 + 510000)>; |
|
}; |
|
}; |
|
|
|
&adc { |
|
status = "okay"; |
|
}; |
|
|
|
&usbd { |
|
cdc_acm_uart: cdc_acm_uart { |
|
compatible = "zephyr,cdc-acm-uart"; |
|
label = "CDC_ACM_0"; |
|
}; |
|
}; |
|
|
|
|