summaryrefslogtreecommitdiff
path: root/zephyr/test/herobrine/boards/native_posix.overlay
blob: bfecc9a7d5ff50eaf4b7c8648cc466775e56cefd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* Copyright 2022 The ChromiumOS Authors.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include <board-overlays/native_posix.dts>

/ {
        /*
         * Keep these GPIOs in pin order.
         * If you need to add one, make sure you increase
         * ngpios in the gpio0 node further down.
         */
        named-gpios {
                compatible = "named-gpios";

                gpio_en_pp5000_s5: en_pp5000_s5 {
                        gpios = <&gpio0 2 GPIO_OUTPUT_HIGH>;
                        enum-name = "GPIO_EN_PP5000";
                };
	};
};

&gpio0 {
        ngpios = <3>;
};