mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-07 07:05:21 +00:00
Add missing copyright and correct wrong e-mail address Signed-off-by: Philipp Steiner <philipp.steiner1987@gmail.com>
20 lines
428 B
Plaintext
20 lines
428 B
Plaintext
/*
|
|
* Copyright (c) 2025 Philipp Steiner <philipp.steiner1987@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
/*
|
|
* On-board transistor powers I2C pull-ups and external devices connected
|
|
* via the STEMMA QT connector.
|
|
*/
|
|
i2c_reg: i2c_reg {
|
|
label = "I2C Power";
|
|
compatible = "power-domain-gpio";
|
|
#power-domain-cells = <0>;
|
|
enable-gpios = <&gpio0 7 GPIO_ACTIVE_LOW>;
|
|
startup-delay-us = <10>;
|
|
};
|
|
};
|