| /* |
| * Copyright (c) 2020 Nuvoton Technology Corporation. |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| /dts-v1/; |
| |
| #include <nuvoton/npcx7m6fb.dtsi> |
| |
| / { |
| model = "Nuvoton NPCX7M6FB evaluation board"; |
| |
| chosen { |
| zephyr,sram = &sram0; |
| zephyr,console = &uart1; |
| zephyr,flash = &flash0; |
| }; |
| |
| aliases { |
| /* For samples/basic/blinky_pwm */ |
| pwm-led0 = &pwm_led0_green; |
| /* For pwm test suites */ |
| pwm-0 = &pwm6; |
| }; |
| |
| pwmleds { |
| compatible = "pwm-leds"; |
| pwm_led0_green: pwm_led_0 { |
| pwms = <&pwm6 0 PWM_POLARITY_INVERTED>; |
| label = "User D7 green"; |
| }; |
| }; |
| }; |
| |
| /* Overwirte default device properties with overlays in board dt file here. */ |
| &uart1 { |
| status = "okay"; |
| current-speed = <115200>; |
| pinctrl-0 = <&altc_uart1_sl2>; /* Use UART1_SL2 ie. PIN64.65 */ |
| }; |
| |
| &pwm6 { |
| status = "okay"; |
| }; |
| |
| &espi0 { |
| status = "okay"; |
| }; |