1/* 2 * Copyright 2024 Felipe Neves 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 leds { 9 compatible = "gpio-leds"; 10 red_led: led_0 { 11 gpios = <&gpioe 3 GPIO_ACTIVE_LOW>; 12 }; 13 green_led: led_1 { 14 gpios = <&gpioc 13 GPIO_ACTIVE_LOW>; 15 }; 16 blue_led: led_2 { 17 gpios = <&gpiof 4 GPIO_ACTIVE_LOW>; 18 }; 19 }; 20}; 21 22&rcc { 23 d1cpre = <1>; 24 hpre = <2>; 25 d1ppre = <2>; 26 d2ppre1 = <2>; 27 d2ppre2 = <2>; 28 d3ppre = <2>; 29}; 30 31&mailbox { 32 status = "okay"; 33}; 34