zephyrproject-rtos / zephyr

Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
https://docs.zephyrproject.org
Apache License 2.0
10.17k stars 6.23k forks source link

device: device_get_binding is broken for nodes with the same name #51449

Open gmarull opened 1 year ago

gmarull commented 1 year ago

Describe the bug

With the removal of labels, DT devices get its name set to DT_NODE_FULL_NAME(node_id). The problem is that such name is not necessarily unique, e.g. this is valid in DT:

i2c@xy {
    ...
    sensora: sensor@10 {  /* DT_NODE_FULL_NAME = sensor@10 */
        ...
    };
}

i2c@yx {
    ...
    sensorb: sensor@10 { /* DT_NODE_FULL_NAME = sensor@10 */
        ...
    };
};

As a result, only one of them can be obtained at runtime using device_get_binding(). While not a frequent case, it is a limitation that should either be fixed or documented.

To Reproduce

Apply this patch:

diff --git a/tests/lib/devicetree/devices/app.overlay b/tests/lib/devicetree/devices/app.overlay
index 3a6212721c..20afde23b6 100644
--- a/tests/lib/devicetree/devices/app.overlay
+++ b/tests/lib/devicetree/devices/app.overlay
@@ -82,6 +82,22 @@
            };
        };

+       test_i2c2: i2c@11112223 {
+           #address-cells = <1>;
+           #size-cells = <0>;
+           compatible = "vnd,i2c";
+           status = "okay";
+           reg = <0x11112223 0x1000>;
+           clock-frequency = <100000>;
+           test_gpioy: test-i2c-dev@11 {
+               gpio-controller;
+               #gpio-cells = <2>;
+               compatible = "vnd,gpio-expander";
+               status = "okay";
+               reg = <0x11>;
+           };
+       };
+
        test_gpio_injected: gpio@1000 {
            gpio-controller;
            #gpio-cells = <0x2>;
diff --git a/tests/lib/devicetree/devices/src/main.c b/tests/lib/devicetree/devices/src/main.c
index a870253888..1affad6ec4 100644
--- a/tests/lib/devicetree/devices/src/main.c
+++ b/tests/lib/devicetree/devices/src/main.c
@@ -10,9 +10,11 @@
 #include <zephyr/drivers/gpio.h>

 #define TEST_GPIO DT_NODELABEL(test_gpio_0)
+#define TEST_I2C2 DT_NODELABEL(test_i2c2)
 #define TEST_I2C DT_NODELABEL(test_i2c)
 #define TEST_DEVA DT_NODELABEL(test_dev_a)
 #define TEST_GPIOX DT_NODELABEL(test_gpiox)
+#define TEST_GPIOY DT_NODELABEL(test_gpioy)
 #define TEST_DEVB DT_NODELABEL(test_dev_b)
 #define TEST_DEVC DT_NODELABEL(test_dev_c)
 #define TEST_PARTITION DT_NODELABEL(test_p0)
@@ -22,7 +24,7 @@
 static const struct device *devlist;
 static const struct device *devlist_end;

-static device_handle_t init_order[10];
+static device_handle_t init_order[12];

 static int dev_init(const struct device *dev)
 {
@@ -36,6 +38,8 @@ static int dev_init(const struct device *dev)

 DEVICE_DT_DEFINE(TEST_GPIO, dev_init, NULL,
         NULL, NULL, PRE_KERNEL_1, 90, NULL);
+DEVICE_DT_DEFINE(TEST_I2C2, dev_init, NULL,
+        NULL, NULL, POST_KERNEL, 10, NULL);
 DEVICE_DT_DEFINE(TEST_I2C, dev_init, NULL,
         NULL, NULL, POST_KERNEL, 10, NULL);
 DEVICE_DT_DEFINE(TEST_DEVA, dev_init, NULL,
@@ -45,6 +49,8 @@ DEVICE_DT_DEFINE(TEST_DEVB, dev_init, NULL,
         NULL, NULL, POST_KERNEL, 30, NULL);
 DEVICE_DT_DEFINE(TEST_GPIOX, dev_init, NULL,
         NULL, NULL, POST_KERNEL, 40, NULL);
+DEVICE_DT_DEFINE(TEST_GPIOY, dev_init, NULL,
+        NULL, NULL, POST_KERNEL, 40, NULL);
 DEVICE_DT_DEFINE(TEST_DEVC, dev_init, NULL,
         NULL, NULL, POST_KERNEL, 50, NULL);
 DEVICE_DT_DEFINE(TEST_PARTITION, dev_init, NULL,
@@ -73,8 +79,10 @@ ZTEST(devicetree_devices, test_init_get)
              DEVICE_DT_GET(TEST_DEVA), NULL);
    zassert_equal(DEVICE_INIT_DT_GET(TEST_DEVB)->dev,
              DEVICE_DT_GET(TEST_DEVB), NULL);
-   zassert_equal(DEVICE_INIT_DT_GET(TEST_GPIOX)->dev,
+   zassert_equal(device_get_binding(DEVICE_DT_NAME(TEST_GPIOX)),
              DEVICE_DT_GET(TEST_GPIOX), NULL);
+   zassert_equal(device_get_binding(DEVICE_DT_NAME(TEST_GPIOY)),
+             DEVICE_DT_GET(TEST_GPIOY), NULL);
    zassert_equal(DEVICE_INIT_DT_GET(TEST_DEVC)->dev,
              DEVICE_DT_GET(TEST_DEVC), NULL);
    zassert_equal(DEVICE_INIT_DT_GET(TEST_PARTITION)->dev,

and run west build -b native_posix tests/lib/devicetree/devices -p.

Expected behavior

I should be able to obtain all devices at runtime using device_get_binding(). If not, document the limitations.

Impact

N/A

Logs and console output

N/A

Environment (please complete the following information):

Additional context N/A

galak commented 1 year ago

I think it should be something we document, since it was true with label that you could have easily had the same value of label before and have the exact same issue.

gmarull commented 1 year ago

I think it should be something we document, since it was true with label that you could have easily had the same value of label before and have the exact same issue.

But with labels you could fix it, now you can't. I guess we could also error/warning if 2 nodes are found with the same full name.

galak commented 1 year ago

I think it should be something we document, since it was true with label that you could have easily had the same value of label before and have the exact same issue.

But with labels you could fix it, now you can't. I guess we could also error/warning if 2 nodes are found with the same full name.

Yeah, I think doing the check makes the most sense.

henrikbrixandersen commented 1 year ago

Another option could be to use DT_PATH as the unique device identifier.

gmarull commented 1 year ago

Another option could be to use DT_PATH as the unique device identifier.

This is an option, but:

galak commented 1 year ago

So here's the warnings we get -- some 2048 lines of warnings:

96b_aerocore2:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
96b_aerocore2:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
96b_aerocore2:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
96b_aerocore2:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
96b_aerocore2:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
96b_aerocore2:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
96b_aerocore2:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
96b_aerocore2:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
96b_aerocore2:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
96b_aerocore2:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
96b_aerocore2:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
96b_aerocore2:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
96b_aerocore2:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
96b_aerocore2:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
96b_aerocore2:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
96b_aerocore2:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
96b_aerocore2:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
96b_aerocore2:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
96b_aerocore2:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
96b_aerocore2:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
96b_aerocore2:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
96b_aerocore2:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
96b_aerocore2:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
96b_aerocore2:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
96b_aerocore2:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
96b_aerocore2:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
96b_aerocore2:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
96b_argonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
96b_argonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
96b_argonkey:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
96b_argonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
96b_argonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
96b_argonkey:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
96b_argonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
96b_argonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
96b_argonkey:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
96b_argonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
96b_argonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
96b_argonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
96b_argonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
96b_argonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
96b_argonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
96b_argonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
96b_argonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
96b_argonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
96b_argonkey:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
96b_argonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
96b_argonkey:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
96b_argonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
96b_argonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
96b_argonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
96b_argonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
96b_argonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
96b_argonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
96b_carbon:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
96b_carbon:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
96b_carbon:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
96b_carbon:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
96b_carbon:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
96b_carbon:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
96b_carbon:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
96b_carbon:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
96b_carbon:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
96b_carbon:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
96b_carbon:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
96b_carbon:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
96b_carbon:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
96b_carbon:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
96b_carbon:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
96b_carbon:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
96b_carbon:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
96b_neonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
96b_neonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
96b_neonkey:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
96b_neonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
96b_neonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
96b_neonkey:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
96b_neonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
96b_neonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
96b_neonkey:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
96b_neonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
96b_neonkey:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
96b_neonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
96b_neonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
96b_neonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
96b_neonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
96b_neonkey:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
96b_neonkey:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
96b_stm32_sensor_mez:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
96b_stm32_sensor_mez:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
96b_stm32_sensor_mez:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
96b_stm32_sensor_mez:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
96b_stm32_sensor_mez:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
96b_stm32_sensor_mez:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
96b_stm32_sensor_mez:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
96b_stm32_sensor_mez:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
96b_stm32_sensor_mez:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
96b_stm32_sensor_mez:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
96b_stm32_sensor_mez:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
96b_stm32_sensor_mez:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
96b_stm32_sensor_mez:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
96b_stm32_sensor_mez:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
96b_stm32_sensor_mez:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
96b_stm32_sensor_mez:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
96b_stm32_sensor_mez:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
96b_wistrio:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
96b_wistrio:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
96b_wistrio:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40010800/pwm
96b_wistrio:WARNING: Duplicate node name 'pwm' between /soc/timers@40010800/pwm and /soc/timers@40010c00/pwm
96b_wistrio:WARNING: Duplicate node name 'pwm' between /soc/timers@40010c00/pwm and /soc/timers@40011400/pwm
adafruit_feather_stm32f405:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
adafruit_feather_stm32f405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
adafruit_feather_stm32f405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
adafruit_feather_stm32f405:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
adafruit_feather_stm32f405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
adafruit_feather_stm32f405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
adafruit_feather_stm32f405:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
adafruit_feather_stm32f405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
adafruit_feather_stm32f405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
adafruit_feather_stm32f405:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
adafruit_feather_stm32f405:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
adafruit_feather_stm32f405:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
adafruit_feather_stm32f405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
adafruit_feather_stm32f405:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
adafruit_feather_stm32f405:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
adafruit_feather_stm32f405:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
adafruit_feather_stm32f405:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
adafruit_feather_stm32f405:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
adafruit_feather_stm32f405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
adafruit_feather_stm32f405:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
adafruit_feather_stm32f405:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
adafruit_feather_stm32f405:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
adafruit_feather_stm32f405:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
adafruit_feather_stm32f405:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
adafruit_feather_stm32f405:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
adafruit_feather_stm32f405:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
adafruit_feather_stm32f405:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
adp_xc7k_ae350:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@0/interrupt-controller and /cpus/cpu@1/interrupt-controller
adp_xc7k_ae350:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@1/interrupt-controller and /cpus/cpu@2/interrupt-controller
adp_xc7k_ae350:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@2/interrupt-controller and /cpus/cpu@3/interrupt-controller
adp_xc7k_ae350:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@3/interrupt-controller and /cpus/cpu@4/interrupt-controller
adp_xc7k_ae350:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@4/interrupt-controller and /cpus/cpu@5/interrupt-controller
adp_xc7k_ae350:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@5/interrupt-controller and /cpus/cpu@6/interrupt-controller
adp_xc7k_ae350:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@6/interrupt-controller and /cpus/cpu@7/interrupt-controller
arduino_nicla_sense_me:WARNING: Duplicate node name 'partitions' between /soc/flash-controller@4001e000/flash@0/partitions and /soc/spi@40023000/mx25r1635f@0/partitions
arduino_portenta_h7_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
arduino_portenta_h7_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
arduino_portenta_h7_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
arduino_portenta_h7_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
arduino_portenta_h7_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
arduino_portenta_h7_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
arduino_portenta_h7_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
arduino_portenta_h7_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
arduino_portenta_h7_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
arduino_portenta_h7_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
arduino_portenta_h7_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
arduino_portenta_h7_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
arduino_portenta_h7_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
arduino_portenta_h7_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
arduino_portenta_h7_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
arduino_portenta_h7_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
arduino_portenta_h7_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
arduino_portenta_h7_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
arduino_portenta_h7_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
arduino_portenta_h7_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
arduino_portenta_h7_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
arduino_portenta_h7_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
arty_a7_arm_designstart_m1:WARNING: Duplicate node name 'gpio2' between /soc/gpio@40120000/gpio2 and /soc/gpio@40110000/gpio2
arty_a7_arm_designstart_m3:WARNING: Duplicate node name 'gpio2' between /soc/gpio@40120000/gpio2 and /soc/gpio@40110000/gpio2
b_g474e_dpow1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
b_g474e_dpow1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
b_g474e_dpow1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
b_g474e_dpow1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
b_g474e_dpow1:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
b_g474e_dpow1:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
b_g474e_dpow1:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
b_g474e_dpow1:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
b_g474e_dpow1:WARNING: Duplicate node name 'pwm' between /soc/timers@40014800/pwm and /soc/timers@40015000/pwm
b_l072z_lrwan1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
b_l072z_lrwan1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40010800/pwm
b_l072z_lrwan1:WARNING: Duplicate node name 'pwm' between /soc/timers@40010800/pwm and /soc/timers@40011400/pwm
b_l4s5i_iot01a:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
b_l4s5i_iot01a:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
b_l4s5i_iot01a:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
b_l4s5i_iot01a:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
b_l4s5i_iot01a:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
b_l4s5i_iot01a:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
b_l4s5i_iot01a:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
b_l4s5i_iot01a:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
b_l4s5i_iot01a:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001400/pwm
b_l4s5i_iot01a:WARNING: Duplicate node name 'pwm' between /soc/timers@40001400/pwm and /soc/timers@40012c00/pwm
b_l4s5i_iot01a:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
b_l4s5i_iot01a:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40014000/counter
b_l4s5i_iot01a:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
b_l4s5i_iot01a:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
b_l4s5i_iot01a:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
b_l4s5i_iot01a:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
b_l4s5i_iot01a:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
b_u585i_iot02a:WARNING: Duplicate node name 'partitions' between /soc/flash-controller@40022000/flash@8000000/partitions and /soc/octospi@420d2400/ospi-nor-flash@0/partitions
b_u585i_iot02a:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
b_u585i_iot02a:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
b_u585i_iot02a:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
b_u585i_iot02a:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
b_u585i_iot02a:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
b_u585i_iot02a:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
b_u585i_iot02a:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
b_u585i_iot02a:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
b_u585i_iot02a_ns:WARNING: Duplicate node name 'partitions' between /soc/flash-controller@40022000/flash@8000000/partitions and /soc/octospi@420d2400/ospi-nor-flash@0/partitions
b_u585i_iot02a_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
b_u585i_iot02a_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
b_u585i_iot02a_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
b_u585i_iot02a_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
b_u585i_iot02a_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
b_u585i_iot02a_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
b_u585i_iot02a_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
b_u585i_iot02a_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
beaglev_starlight_jh7100:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@0/interrupt-controller and /cpus/cpu@1/interrupt-controller
bl5340_dvk_cpuapp:WARNING: Duplicate node name 'partitions' between /soc/peripheral@50000000/flash-controller@39000/flash@0/partitions and /soc/peripheral@50000000/qspi@2b000/mx25r6435f@0/partitions
black_f407ve:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
black_f407ve:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
black_f407ve:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
black_f407ve:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
black_f407ve:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
black_f407ve:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
black_f407ve:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
black_f407ve:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
black_f407ve:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
black_f407ve:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
black_f407ve:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
black_f407ve:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
black_f407ve:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
black_f407ve:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
black_f407ve:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
black_f407ve:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
black_f407ve:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
black_f407ve:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
black_f407ve:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
black_f407ve:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
black_f407ve:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
black_f407ve:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
black_f407ve:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
black_f407ve:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
black_f407ve:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
black_f407ve:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
black_f407ve:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
black_f407zg_pro:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
black_f407zg_pro:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
black_f407zg_pro:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
black_f407zg_pro:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
black_f407zg_pro:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
black_f407zg_pro:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
black_f407zg_pro:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
black_f407zg_pro:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
black_f407zg_pro:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
black_f407zg_pro:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
black_f407zg_pro:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
black_f407zg_pro:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
black_f407zg_pro:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
black_f407zg_pro:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
black_f407zg_pro:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
black_f407zg_pro:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
black_f407zg_pro:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
black_f407zg_pro:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
black_f407zg_pro:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
black_f407zg_pro:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
black_f407zg_pro:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
black_f407zg_pro:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
black_f407zg_pro:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
black_f407zg_pro:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
black_f407zg_pro:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
black_f407zg_pro:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
black_f407zg_pro:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
blackpill_f401cc:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
blackpill_f401cc:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
blackpill_f401cc:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
blackpill_f401cc:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
blackpill_f401cc:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
blackpill_f401cc:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
blackpill_f401cc:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
blackpill_f401cc:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
blackpill_f401cc:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
blackpill_f401cc:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
blackpill_f401cc:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
blackpill_f401cc:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
blackpill_f401cc:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
blackpill_f401cc:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
blackpill_f401cc:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
blackpill_f401cc:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
blackpill_f401cc:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
blackpill_f401ce:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
blackpill_f401ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
blackpill_f401ce:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
blackpill_f401ce:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
blackpill_f401ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
blackpill_f401ce:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
blackpill_f401ce:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
blackpill_f401ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
blackpill_f401ce:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
blackpill_f401ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
blackpill_f401ce:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
blackpill_f401ce:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
blackpill_f401ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
blackpill_f401ce:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
blackpill_f401ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
blackpill_f401ce:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
blackpill_f401ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
blackpill_f411ce:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
blackpill_f411ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
blackpill_f411ce:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
blackpill_f411ce:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
blackpill_f411ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
blackpill_f411ce:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
blackpill_f411ce:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
blackpill_f411ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
blackpill_f411ce:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
blackpill_f411ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
blackpill_f411ce:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
blackpill_f411ce:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
blackpill_f411ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
blackpill_f411ce:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
blackpill_f411ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
blackpill_f411ce:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
blackpill_f411ce:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
bt610:WARNING: Duplicate node name 'partitions' between /soc/flash-controller@4001e000/flash@0/partitions and /soc/qspi@40029000/mx25r6435f@0/partitions
disco_l475_iot1:WARNING: Duplicate node name 'partitions' between /soc/flash-controller@40022000/flash@8000000/partitions and /soc/quadspi@a0001000/qspi-nor-flash@0/partitions
disco_l475_iot1:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
disco_l475_iot1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
disco_l475_iot1:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
disco_l475_iot1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
disco_l475_iot1:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
disco_l475_iot1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
disco_l475_iot1:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
disco_l475_iot1:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
disco_l475_iot1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
disco_l475_iot1:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
disco_l475_iot1:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40014000/counter
disco_l475_iot1:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
disco_l475_iot1:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
disco_l475_iot1:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
disco_l475_iot1:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
disco_l475_iot1:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
dragino_lsn50:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
dragino_lsn50:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40010800/pwm
dragino_lsn50:WARNING: Duplicate node name 'pwm' between /soc/timers@40010800/pwm and /soc/timers@40011400/pwm
dragino_nbsn95:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
dragino_nbsn95:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40010800/pwm
dragino_nbsn95:WARNING: Duplicate node name 'pwm' between /soc/timers@40010800/pwm and /soc/timers@40011400/pwm
gd32e103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40012c00/pwm and /soc/timer@40000000/pwm
gd32e103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000400/pwm
gd32e103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000800/pwm
gd32e103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
gd32e103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000c00/pwm and /soc/timer@40001800/pwm
gd32e103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001800/pwm and /soc/timer@40001c00/pwm
gd32e103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001c00/pwm and /soc/timer@40002000/pwm
gd32e103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40002000/pwm and /soc/timer@40013400/pwm
gd32e103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40013400/pwm and /soc/timer@40014c00/pwm
gd32e103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40014c00/pwm and /soc/timer@40015000/pwm
gd32e103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40015000/pwm and /soc/timer@40015400/pwm
gd32e507v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000000/pwm
gd32e507v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000800/pwm
gd32e507v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
gd32e507v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000c00/pwm and /soc/timer@40001800/pwm
gd32e507v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40001800/pwm and /soc/timer@40001c00/pwm
gd32e507v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40001c00/pwm and /soc/timer@40002000/pwm
gd32e507v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40002000/pwm and /soc/timer@40012c00/pwm
gd32e507v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40012c00/pwm and /soc/timer@40013400/pwm
gd32e507v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40013400/pwm and /soc/timer@40014c00/pwm
gd32e507v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40014c00/pwm and /soc/timer@40015000/pwm
gd32e507v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40015000/pwm and /soc/timer@40015400/pwm
gd32e507z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40012c00/pwm and /soc/timer@40000000/pwm
gd32e507z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000400/pwm
gd32e507z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000800/pwm
gd32e507z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
gd32e507z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000c00/pwm and /soc/timer@40001800/pwm
gd32e507z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001800/pwm and /soc/timer@40001c00/pwm
gd32e507z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001c00/pwm and /soc/timer@40002000/pwm
gd32e507z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40002000/pwm and /soc/timer@40013400/pwm
gd32e507z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40013400/pwm and /soc/timer@40014c00/pwm
gd32e507z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40014c00/pwm and /soc/timer@40015000/pwm
gd32e507z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40015000/pwm and /soc/timer@40015400/pwm
gd32f403z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40012c00/pwm and /soc/timer@40000400/pwm
gd32f403z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000800/pwm
gd32f403z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40001800/pwm
gd32f403z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001800/pwm and /soc/timer@40001c00/pwm
gd32f403z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001c00/pwm and /soc/timer@40002000/pwm
gd32f403z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40002000/pwm and /soc/timer@40013400/pwm
gd32f403z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40013400/pwm and /soc/timer@40014c00/pwm
gd32f403z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40014c00/pwm and /soc/timer@40015000/pwm
gd32f403z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40015000/pwm and /soc/timer@40015400/pwm
gd32f407v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000000/pwm
gd32f407v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000800/pwm
gd32f407v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
gd32f407v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000c00/pwm and /soc/timer@40001800/pwm
gd32f407v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40001800/pwm and /soc/timer@40001c00/pwm
gd32f407v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40001c00/pwm and /soc/timer@40002000/pwm
gd32f407v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40002000/pwm and /soc/timer@40010000/pwm
gd32f407v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40010000/pwm and /soc/timer@40010400/pwm
gd32f407v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40010400/pwm and /soc/timer@40014000/pwm
gd32f407v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40014000/pwm and /soc/timer@40014400/pwm
gd32f407v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40014400/pwm and /soc/timer@40014800/pwm
gd32f450i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000400/pwm
gd32f450i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000800/pwm
gd32f450i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
gd32f450i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000c00/pwm and /soc/timer@40001800/pwm
gd32f450i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001800/pwm and /soc/timer@40001c00/pwm
gd32f450i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001c00/pwm and /soc/timer@40002000/pwm
gd32f450i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40002000/pwm and /soc/timer@40010000/pwm
gd32f450i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40010000/pwm and /soc/timer@40010400/pwm
gd32f450i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40010400/pwm and /soc/timer@40014000/pwm
gd32f450i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40014000/pwm and /soc/timer@40014400/pwm
gd32f450i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40014400/pwm and /soc/timer@40014800/pwm
gd32f450v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000000/pwm
gd32f450v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000800/pwm
gd32f450v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
gd32f450v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40000c00/pwm and /soc/timer@40001800/pwm
gd32f450v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40001800/pwm and /soc/timer@40001c00/pwm
gd32f450v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40001c00/pwm and /soc/timer@40002000/pwm
gd32f450v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40002000/pwm and /soc/timer@40010000/pwm
gd32f450v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40010000/pwm and /soc/timer@40010400/pwm
gd32f450v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40010400/pwm and /soc/timer@40014000/pwm
gd32f450v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40014000/pwm and /soc/timer@40014400/pwm
gd32f450v_start:WARNING: Duplicate node name 'pwm' between /soc/timer@40014400/pwm and /soc/timer@40014800/pwm
gd32f450z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000400/pwm
gd32f450z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000800/pwm
gd32f450z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
gd32f450z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000c00/pwm and /soc/timer@40001800/pwm
gd32f450z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001800/pwm and /soc/timer@40001c00/pwm
gd32f450z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001c00/pwm and /soc/timer@40002000/pwm
gd32f450z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40002000/pwm and /soc/timer@40010000/pwm
gd32f450z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40010000/pwm and /soc/timer@40010400/pwm
gd32f450z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40010400/pwm and /soc/timer@40014000/pwm
gd32f450z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40014000/pwm and /soc/timer@40014400/pwm
gd32f450z_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40014400/pwm and /soc/timer@40014800/pwm
gd32f470i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000400/pwm
gd32f470i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000800/pwm
gd32f470i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
gd32f470i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000c00/pwm and /soc/timer@40001800/pwm
gd32f470i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001800/pwm and /soc/timer@40001c00/pwm
gd32f470i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40001c00/pwm and /soc/timer@40002000/pwm
gd32f470i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40002000/pwm and /soc/timer@40010000/pwm
gd32f470i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40010000/pwm and /soc/timer@40010400/pwm
gd32f470i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40010400/pwm and /soc/timer@40014000/pwm
gd32f470i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40014000/pwm and /soc/timer@40014400/pwm
gd32f470i_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40014400/pwm and /soc/timer@40014800/pwm
gd32vf103c_starter:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000000/pwm
gd32vf103c_starter:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000800/pwm
gd32vf103c_starter:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
gd32vf103c_starter:WARNING: Duplicate node name 'pwm' between /soc/timer@40000c00/pwm and /soc/timer@40012c00/pwm
gd32vf103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40012c00/pwm and /soc/timer@40000000/pwm
gd32vf103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000400/pwm
gd32vf103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000800/pwm
gd32vf103v_eval:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
google_kukui:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
google_kukui:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
google_kukui:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
google_kukui:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
google_kukui:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
google_kukui:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
legend:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
legend:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
legend:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
legend:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
legend:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
longan_nano:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000400/pwm
longan_nano:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000800/pwm
longan_nano:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
longan_nano:WARNING: Duplicate node name 'pwm' between /soc/timer@40000c00/pwm and /soc/timer@40012c00/pwm
longan_nano_lite:WARNING: Duplicate node name 'pwm' between /soc/timer@40000000/pwm and /soc/timer@40000400/pwm
longan_nano_lite:WARNING: Duplicate node name 'pwm' between /soc/timer@40000400/pwm and /soc/timer@40000800/pwm
longan_nano_lite:WARNING: Duplicate node name 'pwm' between /soc/timer@40000800/pwm and /soc/timer@40000c00/pwm
longan_nano_lite:WARNING: Duplicate node name 'pwm' between /soc/timer@40000c00/pwm and /soc/timer@40012c00/pwm
lora_e5_dev_board:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40012c00/pwm
lora_e5_dev_board:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014400/pwm
lora_e5_dev_board:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
lpcxpresso55s36:WARNING: Duplicate node name 'pwm0' between /soc/peripheral@40000000/flexpwm@400C3000/pwm0 and /soc/peripheral@40000000/flexpwm@400C5000/pwm0
lpcxpresso55s36:WARNING: Duplicate node name 'pwm1' between /soc/peripheral@40000000/flexpwm@400C3000/pwm1 and /soc/peripheral@40000000/flexpwm@400C5000/pwm1
lpcxpresso55s36:WARNING: Duplicate node name 'pwm2' between /soc/peripheral@40000000/flexpwm@400C3000/pwm2 and /soc/peripheral@40000000/flexpwm@400C5000/pwm2
lpcxpresso55s36:WARNING: Duplicate node name 'pwm3' between /soc/peripheral@40000000/flexpwm@400C3000/pwm3 and /soc/peripheral@40000000/flexpwm@400C5000/pwm3
mg100:WARNING: Duplicate node name 'partitions' between /soc/flash-controller@4001e000/flash@0/partitions and /soc/qspi@40029000/mx25r6435f@0/partitions
mikroe_clicker_2:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
mikroe_clicker_2:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
mikroe_clicker_2:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
mikroe_clicker_2:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
mikroe_clicker_2:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
mikroe_clicker_2:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
mikroe_clicker_2:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
mikroe_clicker_2:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
mikroe_clicker_2:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
mikroe_clicker_2:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
mikroe_clicker_2:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
mikroe_clicker_2:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
mikroe_clicker_2:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
mikroe_clicker_2:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
mikroe_clicker_2:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
mikroe_clicker_2:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
mikroe_clicker_2:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
mikroe_clicker_2:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
mikroe_clicker_2:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
mikroe_clicker_2:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
mikroe_clicker_2:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
mikroe_clicker_2:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
mikroe_clicker_2:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
mikroe_clicker_2:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
mikroe_clicker_2:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
mikroe_clicker_2:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
mikroe_clicker_2:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
mikroe_mini_m4_for_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
mimxrt1015_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
mimxrt1015_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
mimxrt1015_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
mimxrt1015_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
mimxrt1015_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
mimxrt1015_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
mimxrt1015_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
mimxrt1015_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
mimxrt1015_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
mimxrt1015_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
mimxrt1015_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
mimxrt1015_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
mimxrt1015_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
mimxrt1015_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
mimxrt1015_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
mimxrt1015_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
mimxrt1015_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
mimxrt1015_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
mimxrt1015_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
mimxrt1015_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
mimxrt1015_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
mimxrt1015_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
mimxrt1015_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
mimxrt1015_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
mimxrt1020_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
mimxrt1020_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
mimxrt1020_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
mimxrt1020_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
mimxrt1020_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
mimxrt1020_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
mimxrt1020_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
mimxrt1020_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
mimxrt1020_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
mimxrt1020_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
mimxrt1020_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
mimxrt1020_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
mimxrt1020_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
mimxrt1020_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
mimxrt1020_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
mimxrt1020_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
mimxrt1020_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
mimxrt1020_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
mimxrt1020_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
mimxrt1020_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
mimxrt1020_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
mimxrt1020_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
mimxrt1020_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
mimxrt1020_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
mimxrt1024_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
mimxrt1024_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
mimxrt1024_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
mimxrt1024_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
mimxrt1024_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
mimxrt1024_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
mimxrt1024_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
mimxrt1024_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
mimxrt1024_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
mimxrt1024_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
mimxrt1024_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
mimxrt1024_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
mimxrt1024_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
mimxrt1024_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
mimxrt1024_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
mimxrt1024_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
mimxrt1024_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
mimxrt1024_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
mimxrt1024_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
mimxrt1024_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
mimxrt1024_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
mimxrt1024_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
mimxrt1024_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
mimxrt1024_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
mimxrt1050_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
mimxrt1050_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
mimxrt1050_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
mimxrt1050_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
mimxrt1050_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
mimxrt1050_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
mimxrt1050_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
mimxrt1050_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
mimxrt1050_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
mimxrt1050_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
mimxrt1050_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
mimxrt1050_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
mimxrt1050_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
mimxrt1050_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
mimxrt1050_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
mimxrt1050_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
mimxrt1050_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
mimxrt1050_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
mimxrt1050_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
mimxrt1050_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
mimxrt1050_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
mimxrt1050_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
mimxrt1050_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
mimxrt1050_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
mimxrt1050_evk_qspi:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
mimxrt1060_evk:WARNING: Duplicate node name 'ptp' between /soc/ethernet@402d4000/ptp and /soc/ethernet@402d8000/ptp
mimxrt1060_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
mimxrt1060_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
mimxrt1060_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
mimxrt1060_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
mimxrt1060_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
mimxrt1060_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
mimxrt1060_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
mimxrt1060_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
mimxrt1060_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
mimxrt1060_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
mimxrt1060_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
mimxrt1060_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
mimxrt1060_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
mimxrt1060_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
mimxrt1060_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
mimxrt1060_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
mimxrt1060_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
mimxrt1060_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
mimxrt1060_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
mimxrt1060_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
mimxrt1060_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
mimxrt1060_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
mimxrt1060_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
mimxrt1060_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'ptp' between /soc/ethernet@402d4000/ptp and /soc/ethernet@402d8000/ptp
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
mimxrt1060_evk_hyperflash:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
mimxrt1060_evkb:WARNING: Duplicate node name 'ptp' between /soc/ethernet@402d4000/ptp and /soc/ethernet@402d8000/ptp
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
mimxrt1060_evkb:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
mimxrt1060_evkb:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
mimxrt1060_evkb:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
mimxrt1060_evkb:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
mimxrt1060_evkb:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
mimxrt1060_evkb:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
mimxrt1060_evkb:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
mimxrt1060_evkb:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
mimxrt1060_evkb:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
mimxrt1060_evkb:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
mimxrt1060_evkb:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
mimxrt1060_evkb:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
mimxrt1060_evkb:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
mimxrt1064_evk:WARNING: Duplicate node name 'ptp' between /soc/ethernet@402d4000/ptp and /soc/ethernet@402d8000/ptp
mimxrt1064_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403dc000/pwm3
mimxrt1064_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
mimxrt1064_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
mimxrt1064_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
mimxrt1064_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
mimxrt1064_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
mimxrt1064_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
mimxrt1064_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e4000/pwm3
mimxrt1064_evk:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
mimxrt1064_evk:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
mimxrt1064_evk:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
mimxrt1064_evk:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
mimxrt1064_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
mimxrt1064_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
mimxrt1064_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
mimxrt1064_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
mimxrt1064_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
mimxrt1064_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
mimxrt1064_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
mimxrt1064_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
mimxrt1064_evk:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
mimxrt1064_evk:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
mimxrt1064_evk:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
mimxrt1064_evk:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
mimxrt1064_evk:WARNING: Duplicate node name 'partitions' between /soc/spi@402a4000/w25q32jvwj@0/partitions and /soc/spi@402a8000/is25wp064@0/partitions
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'ptp' between /soc/ethernet@40420000/ptp and /soc/ethernet@40424000/ptp
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@4018c000/pwm0 and /soc/flexpwm@40190000/pwm0
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@4018c000/pwm1 and /soc/flexpwm@40190000/pwm1
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@4018c000/pwm2 and /soc/flexpwm@40190000/pwm2
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@4018c000/pwm3 and /soc/flexpwm@40190000/pwm3
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@40190000/pwm0 and /soc/flexpwm@40194000/pwm0
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@40190000/pwm1 and /soc/flexpwm@40194000/pwm1
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@40190000/pwm2 and /soc/flexpwm@40194000/pwm2
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@40190000/pwm3 and /soc/flexpwm@40194000/pwm3
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@40194000/pwm0 and /soc/flexpwm@40198000/pwm0
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@40194000/pwm1 and /soc/flexpwm@40198000/pwm1
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@40194000/pwm2 and /soc/flexpwm@40198000/pwm2
mimxrt1160_evk_cm4:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@40194000/pwm3 and /soc/flexpwm@40198000/pwm3
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'ptp' between /soc/ethernet@40420000/ptp and /soc/ethernet@40424000/ptp
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@4018c000/pwm0 and /soc/flexpwm@40190000/pwm0
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@4018c000/pwm1 and /soc/flexpwm@40190000/pwm1
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@4018c000/pwm2 and /soc/flexpwm@40190000/pwm2
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@4018c000/pwm3 and /soc/flexpwm@40190000/pwm3
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@40190000/pwm0 and /soc/flexpwm@40194000/pwm0
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@40190000/pwm1 and /soc/flexpwm@40194000/pwm1
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@40190000/pwm2 and /soc/flexpwm@40194000/pwm2
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@40190000/pwm3 and /soc/flexpwm@40194000/pwm3
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@40194000/pwm0 and /soc/flexpwm@40198000/pwm0
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@40194000/pwm1 and /soc/flexpwm@40198000/pwm1
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@40194000/pwm2 and /soc/flexpwm@40198000/pwm2
mimxrt1160_evk_cm7:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@40194000/pwm3 and /soc/flexpwm@40198000/pwm3
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'ptp' between /soc/ethernet@40420000/ptp and /soc/ethernet@40424000/ptp
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@4018c000/pwm0 and /soc/flexpwm@40190000/pwm0
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@4018c000/pwm1 and /soc/flexpwm@40190000/pwm1
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@4018c000/pwm2 and /soc/flexpwm@40190000/pwm2
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@4018c000/pwm3 and /soc/flexpwm@40190000/pwm3
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@40190000/pwm0 and /soc/flexpwm@40194000/pwm0
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@40190000/pwm1 and /soc/flexpwm@40194000/pwm1
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@40190000/pwm2 and /soc/flexpwm@40194000/pwm2
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@40190000/pwm3 and /soc/flexpwm@40194000/pwm3
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@40194000/pwm0 and /soc/flexpwm@40198000/pwm0
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@40194000/pwm1 and /soc/flexpwm@40198000/pwm1
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@40194000/pwm2 and /soc/flexpwm@40198000/pwm2
mimxrt1170_evk_cm4:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@40194000/pwm3 and /soc/flexpwm@40198000/pwm3
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'ptp' between /soc/ethernet@40420000/ptp and /soc/ethernet@40424000/ptp
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@4018c000/pwm0 and /soc/flexpwm@40190000/pwm0
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@4018c000/pwm1 and /soc/flexpwm@40190000/pwm1
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@4018c000/pwm2 and /soc/flexpwm@40190000/pwm2
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@4018c000/pwm3 and /soc/flexpwm@40190000/pwm3
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@40190000/pwm0 and /soc/flexpwm@40194000/pwm0
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@40190000/pwm1 and /soc/flexpwm@40194000/pwm1
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@40190000/pwm2 and /soc/flexpwm@40194000/pwm2
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@40190000/pwm3 and /soc/flexpwm@40194000/pwm3
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@40194000/pwm0 and /soc/flexpwm@40198000/pwm0
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@40194000/pwm1 and /soc/flexpwm@40198000/pwm1
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@40194000/pwm2 and /soc/flexpwm@40198000/pwm2
mimxrt1170_evk_cm7:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@40194000/pwm3 and /soc/flexpwm@40198000/pwm3
mm_feather:WARNING: Duplicate node name 'ptp' between /soc/ethernet@402d4000/ptp and /soc/ethernet@402d8000/ptp
mm_feather:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
mm_feather:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
mm_feather:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
mm_feather:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
mm_feather:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
mm_feather:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
mm_feather:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
mm_feather:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
mm_feather:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
mm_feather:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
mm_feather:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
mm_feather:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
mm_feather:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
mm_feather:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
mm_feather:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
mm_feather:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
mm_feather:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
mm_feather:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
mm_feather:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
mm_feather:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
mm_feather:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
mm_feather:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
mm_feather:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
mm_feather:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
mm_swiftio:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
mm_swiftio:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
mm_swiftio:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
mm_swiftio:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
mm_swiftio:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
mm_swiftio:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
mm_swiftio:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
mm_swiftio:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
mm_swiftio:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
mm_swiftio:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
mm_swiftio:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
mm_swiftio:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
mm_swiftio:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
mm_swiftio:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
mm_swiftio:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
mm_swiftio:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
mm_swiftio:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
mm_swiftio:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
mm_swiftio:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
mm_swiftio:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
mm_swiftio:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
mm_swiftio:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
mm_swiftio:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
mm_swiftio:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
mpfs_icicle:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@0/interrupt-controller and /cpus/cpu@1/interrupt-controller
nucleo_f030r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
nucleo_f030r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
nucleo_f030r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_f030r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f030r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f030r8@1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
nucleo_f030r8@1:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
nucleo_f030r8@1:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_f030r8@1:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f030r8@1:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f030r8@2:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
nucleo_f030r8@2:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
nucleo_f030r8@2:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_f030r8@2:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f030r8@2:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f070rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
nucleo_f070rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
nucleo_f070rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_f070rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f070rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f091rc:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f091rc:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
nucleo_f091rc:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
nucleo_f091rc:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_f091rc:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f091rc:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f103rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f103rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f103rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
nucleo_f207zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40000400/pwm
nucleo_f207zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f207zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000000/pwm
nucleo_f207zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000c00/pwm
nucleo_f207zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001c00/pwm
nucleo_f207zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_f207zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_f207zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_f207zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_f207zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f207zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f302r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f302r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40012c00/pwm
nucleo_f302r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_f302r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f302r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f303k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f303k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f303k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
nucleo_f303k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
nucleo_f303k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
nucleo_f303k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f303k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f303k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40014800/pwm and /soc/timers@40015000/pwm
nucleo_f303re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f303re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f303re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
nucleo_f303re:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
nucleo_f303re:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
nucleo_f303re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f303re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f303re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014800/pwm and /soc/timers@40015000/pwm
nucleo_f334r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f334r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40012c00/pwm
nucleo_f334r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_f334r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f334r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f401re:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_f401re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f401re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
nucleo_f401re:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
nucleo_f401re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f401re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
nucleo_f401re:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
nucleo_f401re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_f401re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
nucleo_f401re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
nucleo_f401re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
nucleo_f401re:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
nucleo_f401re:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
nucleo_f401re:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_f401re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f401re:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
nucleo_f401re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f410rb:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_f410rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f410rb:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
nucleo_f410rb:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
nucleo_f410rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f410rb:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
nucleo_f410rb:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
nucleo_f410rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_f410rb:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
nucleo_f410rb:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
nucleo_f410rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
nucleo_f410rb:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
nucleo_f410rb:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40014000/counter
nucleo_f410rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
nucleo_f410rb:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_f410rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f410rb:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
nucleo_f410rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f411re:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_f411re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f411re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
nucleo_f411re:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
nucleo_f411re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f411re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
nucleo_f411re:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
nucleo_f411re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_f411re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
nucleo_f411re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
nucleo_f411re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
nucleo_f411re:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
nucleo_f411re:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
nucleo_f411re:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_f411re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f411re:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
nucleo_f411re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f412zg:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_f412zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f412zg:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
nucleo_f412zg:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
nucleo_f412zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f412zg:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
nucleo_f412zg:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
nucleo_f412zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_f412zg:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
nucleo_f412zg:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
nucleo_f412zg:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
nucleo_f412zg:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
nucleo_f412zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
nucleo_f412zg:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
nucleo_f412zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
nucleo_f412zg:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
nucleo_f412zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_f412zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_f412zg:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
nucleo_f412zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_f412zg:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
nucleo_f412zg:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
nucleo_f412zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_f412zg:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_f412zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f412zg:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
nucleo_f412zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f413zh:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_f413zh:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f413zh:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
nucleo_f413zh:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
nucleo_f413zh:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f413zh:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
nucleo_f413zh:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
nucleo_f413zh:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_f413zh:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
nucleo_f413zh:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
nucleo_f413zh:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
nucleo_f413zh:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
nucleo_f413zh:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
nucleo_f413zh:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
nucleo_f413zh:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
nucleo_f413zh:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
nucleo_f413zh:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_f413zh:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_f413zh:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
nucleo_f413zh:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_f413zh:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
nucleo_f413zh:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
nucleo_f413zh:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_f413zh:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_f413zh:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f413zh:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
nucleo_f413zh:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f429zi:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_f429zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f429zi:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
nucleo_f429zi:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
nucleo_f429zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f429zi:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
nucleo_f429zi:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
nucleo_f429zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_f429zi:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
nucleo_f429zi:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
nucleo_f429zi:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
nucleo_f429zi:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
nucleo_f429zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
nucleo_f429zi:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
nucleo_f429zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
nucleo_f429zi:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
nucleo_f429zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_f429zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_f429zi:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
nucleo_f429zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_f429zi:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
nucleo_f429zi:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
nucleo_f429zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_f429zi:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_f429zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f429zi:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
nucleo_f429zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f446re:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_f446re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f446re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
nucleo_f446re:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
nucleo_f446re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f446re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
nucleo_f446re:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
nucleo_f446re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_f446re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
nucleo_f446re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
nucleo_f446re:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
nucleo_f446re:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
nucleo_f446re:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
nucleo_f446re:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_f446re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f446re:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
nucleo_f446re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f446ze:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_f446ze:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f446ze:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
nucleo_f446ze:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
nucleo_f446ze:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f446ze:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
nucleo_f446ze:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
nucleo_f446ze:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_f446ze:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
nucleo_f446ze:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
nucleo_f446ze:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
nucleo_f446ze:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
nucleo_f446ze:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
nucleo_f446ze:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_f446ze:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f446ze:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
nucleo_f446ze:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f746zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f746zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f746zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_f746zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
nucleo_f746zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
nucleo_f746zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_f746zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_f746zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_f746zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_f746zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f746zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f756zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f756zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f756zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_f756zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
nucleo_f756zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
nucleo_f756zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_f756zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_f756zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_f756zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_f756zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f756zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_f767zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_f767zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_f767zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_f767zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
nucleo_f767zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
nucleo_f767zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_f767zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_f767zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_f767zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_f767zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_f767zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_g031k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_g031k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
nucleo_g031k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
nucleo_g031k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014400/pwm
nucleo_g031k8:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_g071rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_g071rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
nucleo_g071rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
nucleo_g071rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_g071rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_g071rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_g0b1re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_g0b1re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_g0b1re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40002000/pwm
nucleo_g0b1re:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
nucleo_g0b1re:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_g0b1re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_g0b1re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_g431rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_g431rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_g431rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
nucleo_g431rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
nucleo_g431rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
nucleo_g431rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_g431rb:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_g474re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_g474re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_g474re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_g474re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
nucleo_g474re:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
nucleo_g474re:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
nucleo_g474re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_g474re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_g474re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014800/pwm and /soc/timers@40015000/pwm
nucleo_h723zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40000000/pwm
nucleo_h723zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_h723zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_h723zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_h723zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001c00/pwm
nucleo_h723zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_h723zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_h723zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_h723zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_h723zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_h723zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_h743zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40000000/pwm
nucleo_h743zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_h743zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_h743zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_h743zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001c00/pwm
nucleo_h743zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_h743zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_h743zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_h743zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_h743zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_h743zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_h745zi_q_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_h745zi_q_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_h745zi_q_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_h745zi_q_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
nucleo_h745zi_q_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
nucleo_h745zi_q_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_h745zi_q_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_h745zi_q_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_h745zi_q_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_h745zi_q_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_h745zi_q_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_h745zi_q_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40000000/pwm
nucleo_h745zi_q_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_h745zi_q_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_h745zi_q_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_h745zi_q_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001c00/pwm
nucleo_h745zi_q_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_h745zi_q_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_h745zi_q_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_h745zi_q_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_h745zi_q_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_h745zi_q_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_h753zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40000000/pwm
nucleo_h753zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_h753zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_h753zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_h753zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001c00/pwm
nucleo_h753zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_h753zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_h753zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_h753zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_h753zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_h753zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_h7a3zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40000000/pwm
nucleo_h7a3zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_h7a3zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_h7a3zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_h7a3zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001c00/pwm
nucleo_h7a3zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
nucleo_h7a3zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
nucleo_h7a3zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
nucleo_h7a3zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
nucleo_h7a3zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_h7a3zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_l031k6:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40010800/pwm
nucleo_l031k6:WARNING: Duplicate node name 'pwm' between /soc/timers@40010800/pwm and /soc/timers@40011400/pwm
nucleo_l053r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40010800/pwm
nucleo_l053r8:WARNING: Duplicate node name 'pwm' between /soc/timers@40010800/pwm and /soc/timers@40011400/pwm
nucleo_l073rz:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_l073rz:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40010800/pwm
nucleo_l073rz:WARNING: Duplicate node name 'pwm' between /soc/timers@40010800/pwm and /soc/timers@40011400/pwm
nucleo_l152re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_l152re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_l152re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_l152re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010800/pwm
nucleo_l152re:WARNING: Duplicate node name 'pwm' between /soc/timers@40010800/pwm and /soc/timers@40010c00/pwm
nucleo_l152re:WARNING: Duplicate node name 'pwm' between /soc/timers@40010c00/pwm and /soc/timers@40011400/pwm
nucleo_l412rb_p:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40001000/counter
nucleo_l412rb_p:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40012c00/pwm
nucleo_l412rb_p:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40014000/counter
nucleo_l412rb_p:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_l412rb_p:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_l412rb_p:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_l432kc:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40001000/counter
nucleo_l432kc:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
nucleo_l432kc:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40012c00/pwm
nucleo_l432kc:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40014000/counter
nucleo_l432kc:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_l432kc:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_l432kc:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_l433rc_p:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40001000/counter
nucleo_l433rc_p:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
nucleo_l433rc_p:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40012c00/pwm
nucleo_l433rc_p:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40014000/counter
nucleo_l433rc_p:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_l433rc_p:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_l433rc_p:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_l452re:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_l452re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_l452re:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40001000/counter
nucleo_l452re:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40012c00/pwm
nucleo_l452re:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40014000/counter
nucleo_l452re:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_l452re:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_l452re:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_l452re_p:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_l452re_p:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_l452re_p:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40001000/counter
nucleo_l452re_p:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40012c00/pwm
nucleo_l452re_p:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40014000/counter
nucleo_l452re_p:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
nucleo_l452re_p:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_l452re_p:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_l476rg:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_l476rg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_l476rg:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
nucleo_l476rg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_l476rg:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
nucleo_l476rg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_l476rg:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
nucleo_l476rg:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
nucleo_l476rg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
nucleo_l476rg:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
nucleo_l476rg:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40014000/counter
nucleo_l476rg:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
nucleo_l476rg:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_l476rg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_l476rg:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
nucleo_l476rg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_l496zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40000000/pwm
nucleo_l496zg:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_l496zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_l496zg:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
nucleo_l496zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_l496zg:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
nucleo_l496zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_l496zg:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
nucleo_l496zg:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
nucleo_l496zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
nucleo_l496zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
nucleo_l496zg:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40014000/counter
nucleo_l496zg:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_l496zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014400/pwm
nucleo_l496zg:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
nucleo_l496zg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_l4r5zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40000000/pwm
nucleo_l4r5zi:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
nucleo_l4r5zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_l4r5zi:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
nucleo_l4r5zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_l4r5zi:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
nucleo_l4r5zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_l4r5zi:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
nucleo_l4r5zi:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
nucleo_l4r5zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001400/pwm
nucleo_l4r5zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40001400/pwm and /soc/timers@40013400/pwm
nucleo_l4r5zi:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40014000/counter
nucleo_l4r5zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
nucleo_l4r5zi:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
nucleo_l4r5zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_l4r5zi:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
nucleo_l4r5zi:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_l552ze_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_l552ze_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_l552ze_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_l552ze_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
nucleo_l552ze_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
nucleo_l552ze_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
nucleo_l552ze_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_l552ze_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_l552ze_q_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_l552ze_q_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_l552ze_q_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_l552ze_q_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
nucleo_l552ze_q_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
nucleo_l552ze_q_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
nucleo_l552ze_q_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_l552ze_q_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_u575zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
nucleo_u575zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
nucleo_u575zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
nucleo_u575zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
nucleo_u575zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
nucleo_u575zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
nucleo_u575zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
nucleo_u575zi_q:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_wb55rg:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40012c00/pwm
nucleo_wb55rg:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014400/pwm
nucleo_wb55rg:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
nucleo_wl55jc:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40012c00/pwm
nucleo_wl55jc:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014400/pwm
nucleo_wl55jc:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
olimex_lora_stm32wl_devkit:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40012c00/pwm
olimex_lora_stm32wl_devkit:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014400/pwm
olimex_lora_stm32wl_devkit:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
olimex_stm32_e407:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
olimex_stm32_e407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
olimex_stm32_e407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
olimex_stm32_e407:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
olimex_stm32_e407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
olimex_stm32_e407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
olimex_stm32_e407:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
olimex_stm32_e407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
olimex_stm32_e407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
olimex_stm32_e407:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
olimex_stm32_e407:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
olimex_stm32_e407:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
olimex_stm32_e407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
olimex_stm32_e407:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
olimex_stm32_e407:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
olimex_stm32_e407:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
olimex_stm32_e407:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
olimex_stm32_e407:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
olimex_stm32_e407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
olimex_stm32_e407:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
olimex_stm32_e407:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
olimex_stm32_e407:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
olimex_stm32_e407:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
olimex_stm32_e407:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
olimex_stm32_e407:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
olimex_stm32_e407:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
olimex_stm32_e407:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
olimex_stm32_h103:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
olimex_stm32_h103:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
olimex_stm32_h103:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
olimex_stm32_h405:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
olimex_stm32_h405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
olimex_stm32_h405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
olimex_stm32_h405:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
olimex_stm32_h405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
olimex_stm32_h405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
olimex_stm32_h405:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
olimex_stm32_h405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
olimex_stm32_h405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
olimex_stm32_h405:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
olimex_stm32_h405:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
olimex_stm32_h405:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
olimex_stm32_h405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
olimex_stm32_h405:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
olimex_stm32_h405:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
olimex_stm32_h405:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
olimex_stm32_h405:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
olimex_stm32_h405:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
olimex_stm32_h405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
olimex_stm32_h405:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
olimex_stm32_h405:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
olimex_stm32_h405:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
olimex_stm32_h405:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
olimex_stm32_h405:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
olimex_stm32_h405:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
olimex_stm32_h405:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
olimex_stm32_h405:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
olimex_stm32_h407:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
olimex_stm32_h407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
olimex_stm32_h407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
olimex_stm32_h407:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
olimex_stm32_h407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
olimex_stm32_h407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
olimex_stm32_h407:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
olimex_stm32_h407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
olimex_stm32_h407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
olimex_stm32_h407:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
olimex_stm32_h407:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
olimex_stm32_h407:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
olimex_stm32_h407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
olimex_stm32_h407:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
olimex_stm32_h407:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
olimex_stm32_h407:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
olimex_stm32_h407:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
olimex_stm32_h407:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
olimex_stm32_h407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
olimex_stm32_h407:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
olimex_stm32_h407:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
olimex_stm32_h407:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
olimex_stm32_h407:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
olimex_stm32_h407:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
olimex_stm32_h407:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
olimex_stm32_h407:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
olimex_stm32_h407:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
olimex_stm32_p405:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
olimex_stm32_p405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
olimex_stm32_p405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
olimex_stm32_p405:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
olimex_stm32_p405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
olimex_stm32_p405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
olimex_stm32_p405:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
olimex_stm32_p405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
olimex_stm32_p405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
olimex_stm32_p405:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
olimex_stm32_p405:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
olimex_stm32_p405:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
olimex_stm32_p405:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
olimex_stm32_p405:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
olimex_stm32_p405:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
olimex_stm32_p405:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
olimex_stm32_p405:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
olimex_stm32_p405:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
olimex_stm32_p405:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
olimex_stm32_p405:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
olimex_stm32_p405:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
olimex_stm32_p405:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
olimex_stm32_p405:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
olimex_stm32_p405:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
olimex_stm32_p405:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
olimex_stm32_p405:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
olimex_stm32_p405:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
olimexino_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
olimexino_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
olimexino_stm32:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
pinetime_devkit0:WARNING: Duplicate node name 'partitions' between /soc/flash-controller@4001e000/flash@0/partitions and /soc/spi@40004000/xt25fb32@0/partitions
pinnacle_100_dvk:WARNING: Duplicate node name 'partitions' between /soc/flash-controller@4001e000/flash@0/partitions and /soc/qspi@40029000/mx25r6435f@0/partitions
qemu_riscv32:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@0/interrupt-controller and /cpus/cpu@1/interrupt-controller
qemu_riscv32:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@1/interrupt-controller and /cpus/cpu@2/interrupt-controller
qemu_riscv32:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@2/interrupt-controller and /cpus/cpu@3/interrupt-controller
qemu_riscv32:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@3/interrupt-controller and /cpus/cpu@4/interrupt-controller
qemu_riscv32:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@4/interrupt-controller and /cpus/cpu@5/interrupt-controller
qemu_riscv32:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@5/interrupt-controller and /cpus/cpu@6/interrupt-controller
qemu_riscv32:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@6/interrupt-controller and /cpus/cpu@7/interrupt-controller
qemu_riscv32_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@0/interrupt-controller and /cpus/cpu@1/interrupt-controller
qemu_riscv32_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@1/interrupt-controller and /cpus/cpu@2/interrupt-controller
qemu_riscv32_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@2/interrupt-controller and /cpus/cpu@3/interrupt-controller
qemu_riscv32_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@3/interrupt-controller and /cpus/cpu@4/interrupt-controller
qemu_riscv32_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@4/interrupt-controller and /cpus/cpu@5/interrupt-controller
qemu_riscv32_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@5/interrupt-controller and /cpus/cpu@6/interrupt-controller
qemu_riscv32_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@6/interrupt-controller and /cpus/cpu@7/interrupt-controller
qemu_riscv32e:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@0/interrupt-controller and /cpus/cpu@1/interrupt-controller
qemu_riscv32e:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@1/interrupt-controller and /cpus/cpu@2/interrupt-controller
qemu_riscv32e:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@2/interrupt-controller and /cpus/cpu@3/interrupt-controller
qemu_riscv32e:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@3/interrupt-controller and /cpus/cpu@4/interrupt-controller
qemu_riscv32e:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@4/interrupt-controller and /cpus/cpu@5/interrupt-controller
qemu_riscv32e:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@5/interrupt-controller and /cpus/cpu@6/interrupt-controller
qemu_riscv32e:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@6/interrupt-controller and /cpus/cpu@7/interrupt-controller
qemu_riscv64:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@0/interrupt-controller and /cpus/cpu@1/interrupt-controller
qemu_riscv64:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@1/interrupt-controller and /cpus/cpu@2/interrupt-controller
qemu_riscv64:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@2/interrupt-controller and /cpus/cpu@3/interrupt-controller
qemu_riscv64:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@3/interrupt-controller and /cpus/cpu@4/interrupt-controller
qemu_riscv64:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@4/interrupt-controller and /cpus/cpu@5/interrupt-controller
qemu_riscv64:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@5/interrupt-controller and /cpus/cpu@6/interrupt-controller
qemu_riscv64:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@6/interrupt-controller and /cpus/cpu@7/interrupt-controller
qemu_riscv64_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@0/interrupt-controller and /cpus/cpu@1/interrupt-controller
qemu_riscv64_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@1/interrupt-controller and /cpus/cpu@2/interrupt-controller
qemu_riscv64_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@2/interrupt-controller and /cpus/cpu@3/interrupt-controller
qemu_riscv64_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@3/interrupt-controller and /cpus/cpu@4/interrupt-controller
qemu_riscv64_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@4/interrupt-controller and /cpus/cpu@5/interrupt-controller
qemu_riscv64_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@5/interrupt-controller and /cpus/cpu@6/interrupt-controller
qemu_riscv64_smp:WARNING: Duplicate node name 'interrupt-controller' between /cpus/cpu@6/interrupt-controller and /cpus/cpu@7/interrupt-controller
rm1xx_dvk:WARNING: Duplicate node name 'partitions' between /soc/flash-controller@4001e000/flash@0/partitions and /soc/spi@40004000/at25df041b@0/partitions
ronoth_lodev:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
ronoth_lodev:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40010800/pwm
ronoth_lodev:WARNING: Duplicate node name 'pwm' between /soc/timers@40010800/pwm and /soc/timers@40011400/pwm
segger_trb_stm32f407:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
segger_trb_stm32f407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
segger_trb_stm32f407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
segger_trb_stm32f407:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
segger_trb_stm32f407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
segger_trb_stm32f407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
segger_trb_stm32f407:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
segger_trb_stm32f407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
segger_trb_stm32f407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
segger_trb_stm32f407:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
segger_trb_stm32f407:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
segger_trb_stm32f407:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
segger_trb_stm32f407:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
segger_trb_stm32f407:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
segger_trb_stm32f407:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
segger_trb_stm32f407:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
segger_trb_stm32f407:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
segger_trb_stm32f407:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
segger_trb_stm32f407:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
segger_trb_stm32f407:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
segger_trb_stm32f407:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
segger_trb_stm32f407:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
segger_trb_stm32f407:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
segger_trb_stm32f407:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
segger_trb_stm32f407:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
segger_trb_stm32f407:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
segger_trb_stm32f407:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
sensortile_box:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
sensortile_box:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
sensortile_box:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
sensortile_box:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
sensortile_box:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
sensortile_box:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
sensortile_box:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
sensortile_box:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
sensortile_box:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001400/pwm
sensortile_box:WARNING: Duplicate node name 'pwm' between /soc/timers@40001400/pwm and /soc/timers@40012c00/pwm
sensortile_box:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
sensortile_box:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40014000/counter
sensortile_box:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
sensortile_box:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
sensortile_box:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
sensortile_box:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
sensortile_box:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
steval_fcu001v1:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
steval_fcu001v1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
steval_fcu001v1:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
steval_fcu001v1:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
steval_fcu001v1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
steval_fcu001v1:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
steval_fcu001v1:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
steval_fcu001v1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
steval_fcu001v1:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
steval_fcu001v1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
steval_fcu001v1:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
steval_fcu001v1:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
steval_fcu001v1:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
steval_fcu001v1:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
steval_fcu001v1:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
steval_fcu001v1:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
steval_fcu001v1:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm3210c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm3210c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm3210c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm3210c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
stm32373c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32373c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32373c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32373c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32373c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32373c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32373c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40009c00/pwm
stm32373c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40009c00/pwm and /soc/timers@40014000/pwm
stm32373c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32373c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32373c_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40014800/pwm and /soc/timers@40015c00/pwm
stm32_min_dev_black:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32_min_dev_black:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32_min_dev_black:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
stm32_min_dev_blue:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32_min_dev_blue:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32_min_dev_blue:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
stm32f072_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f072_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
stm32f072_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
stm32f072_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
stm32f072_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f072_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f072b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f072b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
stm32f072b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
stm32f072b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
stm32f072b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f072b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f0_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
stm32f0_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
stm32f0_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
stm32f0_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f0_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f103_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f103_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f103_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32f103_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
stm32f103_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
stm32f3_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f3_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f3_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
stm32f3_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
stm32f3_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
stm32f3_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f3_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f3_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014800/pwm and /soc/timers@40015000/pwm
stm32f3_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f3_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f3_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
stm32f3_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
stm32f3_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
stm32f3_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f3_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f3_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40014800/pwm and /soc/timers@40015000/pwm
stm32f3_disco@E:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f3_disco@E:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f3_disco@E:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
stm32f3_disco@E:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
stm32f3_disco@E:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
stm32f3_disco@E:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f3_disco@E:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f3_disco@E:WARNING: Duplicate node name 'pwm' between /soc/timers@40014800/pwm and /soc/timers@40015000/pwm
stm32f401_mini:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
stm32f401_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f401_mini:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
stm32f401_mini:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
stm32f401_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f401_mini:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
stm32f401_mini:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
stm32f401_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32f401_mini:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
stm32f401_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
stm32f401_mini:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
stm32f401_mini:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
stm32f401_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
stm32f401_mini:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
stm32f401_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f401_mini:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
stm32f401_mini:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f411e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000000/pwm
stm32f411e_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
stm32f411e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f411e_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
stm32f411e_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
stm32f411e_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
stm32f411e_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
stm32f411e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000c00/pwm
stm32f411e_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
stm32f411e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
stm32f411e_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
stm32f411e_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
stm32f411e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
stm32f411e_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
stm32f411e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f411e_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
stm32f411e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f411e_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000000/pwm
stm32f411e_disco@B:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
stm32f411e_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f411e_disco@B:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
stm32f411e_disco@B:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
stm32f411e_disco@B:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
stm32f411e_disco@B:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
stm32f411e_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000c00/pwm
stm32f411e_disco@B:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
stm32f411e_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
stm32f411e_disco@B:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
stm32f411e_disco@B:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
stm32f411e_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
stm32f411e_disco@B:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
stm32f411e_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f411e_disco@B:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
stm32f411e_disco@B:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f411e_disco@D:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000000/pwm
stm32f411e_disco@D:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
stm32f411e_disco@D:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f411e_disco@D:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
stm32f411e_disco@D:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
stm32f411e_disco@D:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
stm32f411e_disco@D:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
stm32f411e_disco@D:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000c00/pwm
stm32f411e_disco@D:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
stm32f411e_disco@D:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40010000/pwm
stm32f411e_disco@D:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
stm32f411e_disco@D:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40014000/counter
stm32f411e_disco@D:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40014000/pwm
stm32f411e_disco@D:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
stm32f411e_disco@D:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f411e_disco@D:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
stm32f411e_disco@D:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f412g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
stm32f412g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f412g_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
stm32f412g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
stm32f412g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f412g_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
stm32f412g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
stm32f412g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32f412g_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
stm32f412g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
stm32f412g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
stm32f412g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
stm32f412g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32f412g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
stm32f412g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32f412g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
stm32f412g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32f412g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32f412g_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
stm32f412g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32f412g_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
stm32f412g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
stm32f412g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32f412g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
stm32f412g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f412g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
stm32f412g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f429i_disc1:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
stm32f429i_disc1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f429i_disc1:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
stm32f429i_disc1:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
stm32f429i_disc1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f429i_disc1:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
stm32f429i_disc1:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
stm32f429i_disc1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32f429i_disc1:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
stm32f429i_disc1:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
stm32f429i_disc1:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
stm32f429i_disc1:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
stm32f429i_disc1:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32f429i_disc1:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
stm32f429i_disc1:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32f429i_disc1:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
stm32f429i_disc1:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32f429i_disc1:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32f429i_disc1:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
stm32f429i_disc1:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32f429i_disc1:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
stm32f429i_disc1:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
stm32f429i_disc1:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32f429i_disc1:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
stm32f429i_disc1:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f429i_disc1:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
stm32f429i_disc1:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f469i_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
stm32f469i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f469i_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
stm32f469i_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
stm32f469i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f469i_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
stm32f469i_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
stm32f469i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32f469i_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
stm32f469i_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
stm32f469i_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
stm32f469i_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
stm32f469i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32f469i_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
stm32f469i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32f469i_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
stm32f469i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32f469i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32f469i_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
stm32f469i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32f469i_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
stm32f469i_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
stm32f469i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32f469i_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
stm32f469i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f469i_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
stm32f469i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f4_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
stm32f4_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f4_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000000/qdec and /soc/timers@40000400/qdec
stm32f4_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
stm32f4_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f4_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000400/qdec and /soc/timers@40000800/qdec
stm32f4_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
stm32f4_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32f4_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000800/qdec and /soc/timers@40000c00/qdec
stm32f4_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
stm32f4_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
stm32f4_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40001800/counter
stm32f4_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32f4_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001800/counter and /soc/timers@40001c00/counter
stm32f4_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32f4_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001c00/counter and /soc/timers@40002000/counter
stm32f4_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32f4_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32f4_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40000c00/qdec and /soc/timers@40010000/qdec
stm32f4_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32f4_disco:WARNING: Duplicate node name 'qdec' between /soc/timers@40010000/qdec and /soc/timers@40010400/qdec
stm32f4_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40002000/counter and /soc/timers@40014000/counter
stm32f4_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32f4_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
stm32f4_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f4_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
stm32f4_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f723e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f723e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f723e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32f723e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32f723e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32f723e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32f723e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32f723e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32f723e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32f723e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f723e_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f746g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f746g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f746g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32f746g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32f746g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32f746g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32f746g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32f746g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32f746g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32f746g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f746g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f7508_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f7508_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f7508_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32f7508_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32f7508_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32f7508_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32f7508_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32f7508_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32f7508_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32f7508_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f7508_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32f769i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32f769i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32f769i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32f769i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32f769i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32f769i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32f769i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32f769i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32f769i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32f769i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32f769i_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32g0316_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32g0316_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
stm32g0316_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
stm32g0316_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014400/pwm
stm32g0316_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32g071b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32g071b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
stm32g071b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
stm32g071b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
stm32g071b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32g071b_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32g081b_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32g081b_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40002000/pwm
stm32g081b_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40012c00/pwm
stm32g081b_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40014000/pwm
stm32g081b_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32g081b_eval:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32h735g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32h735g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32h735g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32h735g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32h735g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32h735g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32h735g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32h735g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32h735g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32h735g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32h735g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32h747i_disco_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32h747i_disco_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32h747i_disco_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32h747i_disco_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32h747i_disco_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32h747i_disco_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32h747i_disco_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32h747i_disco_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32h747i_disco_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32h747i_disco_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32h747i_disco_m4:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32h747i_disco_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32h747i_disco_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32h747i_disco_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32h747i_disco_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32h747i_disco_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32h747i_disco_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32h747i_disco_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32h747i_disco_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32h747i_disco_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32h747i_disco_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32h747i_disco_m7:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32h7b3i_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32h7b3i_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32h7b3i_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32h7b3i_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001800/pwm
stm32h7b3i_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40001800/pwm and /soc/timers@40001c00/pwm
stm32h7b3i_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40001c00/pwm and /soc/timers@40002000/pwm
stm32h7b3i_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40002000/pwm and /soc/timers@40010000/pwm
stm32h7b3i_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40010000/pwm and /soc/timers@40010400/pwm
stm32h7b3i_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40010400/pwm and /soc/timers@40014000/pwm
stm32h7b3i_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32h7b3i_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32l1_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32l1_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32l1_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40010800/pwm
stm32l1_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010800/pwm and /soc/timers@40010c00/pwm
stm32l1_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40010c00/pwm and /soc/timers@40011400/pwm
stm32l476g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
stm32l476g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32l476g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
stm32l476g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32l476g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
stm32l476g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32l476g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
stm32l476g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
stm32l476g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
stm32l476g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
stm32l476g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40014000/counter
stm32l476g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
stm32l476g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
stm32l476g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32l476g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
stm32l476g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32l496g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
stm32l496g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32l496g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
stm32l496g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32l496g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
stm32l496g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32l496g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
stm32l496g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
stm32l496g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
stm32l496g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
stm32l496g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40014000/counter
stm32l496g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
stm32l496g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
stm32l496g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32l496g_disco:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
stm32l496g_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32l562e_dk:WARNING: Duplicate node name 'partitions' between /soc/flash-controller@40022000/flash@8000000/partitions and /soc/octospi@44021000/ospi-nor-flash@0/partitions
stm32l562e_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32l562e_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32l562e_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32l562e_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
stm32l562e_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
stm32l562e_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
stm32l562e_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32l562e_dk:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32l562e_dk_ns:WARNING: Duplicate node name 'partitions' between /soc/flash-controller@40022000/flash@8000000/partitions and /soc/octospi@44021000/ospi-nor-flash@0/partitions
stm32l562e_dk_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32l562e_dk_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32l562e_dk_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
stm32l562e_dk_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
stm32l562e_dk_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
stm32l562e_dk_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
stm32l562e_dk_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
stm32l562e_dk_ns:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
stm32vl_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
stm32vl_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
stm32vl_disco:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40012c00/pwm
swan_r5:WARNING: Duplicate node name 'counter' between /soc/timers@40000000/counter and /soc/timers@40000400/counter
swan_r5:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
swan_r5:WARNING: Duplicate node name 'counter' between /soc/timers@40000400/counter and /soc/timers@40000800/counter
swan_r5:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
swan_r5:WARNING: Duplicate node name 'counter' between /soc/timers@40000800/counter and /soc/timers@40000c00/counter
swan_r5:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
swan_r5:WARNING: Duplicate node name 'counter' between /soc/timers@40000c00/counter and /soc/timers@40001000/counter
swan_r5:WARNING: Duplicate node name 'counter' between /soc/timers@40001000/counter and /soc/timers@40001400/counter
swan_r5:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40001400/pwm
swan_r5:WARNING: Duplicate node name 'pwm' between /soc/timers@40001400/pwm and /soc/timers@40012c00/pwm
swan_r5:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
swan_r5:WARNING: Duplicate node name 'counter' between /soc/timers@40001400/counter and /soc/timers@40014000/counter
swan_r5:WARNING: Duplicate node name 'pwm' between /soc/timers@40013400/pwm and /soc/timers@40014000/pwm
swan_r5:WARNING: Duplicate node name 'counter' between /soc/timers@40014000/counter and /soc/timers@40014400/counter
swan_r5:WARNING: Duplicate node name 'pwm' between /soc/timers@40014000/pwm and /soc/timers@40014400/pwm
swan_r5:WARNING: Duplicate node name 'counter' between /soc/timers@40014400/counter and /soc/timers@40014800/counter
swan_r5:WARNING: Duplicate node name 'pwm' between /soc/timers@40014400/pwm and /soc/timers@40014800/pwm
teensy40:WARNING: Duplicate node name 'ptp' between /soc/ethernet@402d4000/ptp and /soc/ethernet@402d8000/ptp
teensy40:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
teensy40:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
teensy40:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
teensy40:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
teensy40:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
teensy40:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
teensy40:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
teensy40:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
teensy40:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
teensy40:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
teensy40:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
teensy40:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
teensy40:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
teensy40:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
teensy40:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
teensy40:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
teensy40:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
teensy40:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
teensy40:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
teensy40:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
teensy40:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
teensy40:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
teensy40:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
teensy40:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
teensy41:WARNING: Duplicate node name 'ptp' between /soc/ethernet@402d4000/ptp and /soc/ethernet@402d8000/ptp
teensy41:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403dc000/pwm0 and /soc/flexpwm@403e0000/pwm0
teensy41:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403dc000/pwm1 and /soc/flexpwm@403e0000/pwm1
teensy41:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403dc000/pwm2 and /soc/flexpwm@403e0000/pwm2
teensy41:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403dc000/pwm3 and /soc/flexpwm@403e0000/pwm3
teensy41:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e0000/pwm0 and /soc/flexpwm@403e4000/pwm0
teensy41:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e0000/pwm1 and /soc/flexpwm@403e4000/pwm1
teensy41:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e0000/pwm2 and /soc/flexpwm@403e4000/pwm2
teensy41:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e0000/pwm3 and /soc/flexpwm@403e4000/pwm3
teensy41:WARNING: Duplicate node name 'pwm0' between /soc/flexpwm@403e4000/pwm0 and /soc/flexpwm@403e8000/pwm0
teensy41:WARNING: Duplicate node name 'pwm1' between /soc/flexpwm@403e4000/pwm1 and /soc/flexpwm@403e8000/pwm1
teensy41:WARNING: Duplicate node name 'pwm2' between /soc/flexpwm@403e4000/pwm2 and /soc/flexpwm@403e8000/pwm2
teensy41:WARNING: Duplicate node name 'pwm3' between /soc/flexpwm@403e4000/pwm3 and /soc/flexpwm@403e8000/pwm3
teensy41:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401dc000/timer0 and /soc/qtmr@401e0000/timer0
teensy41:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401dc000/timer1 and /soc/qtmr@401e0000/timer1
teensy41:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401dc000/timer2 and /soc/qtmr@401e0000/timer2
teensy41:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401dc000/timer3 and /soc/qtmr@401e0000/timer3
teensy41:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e0000/timer0 and /soc/qtmr@401e4000/timer0
teensy41:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e0000/timer1 and /soc/qtmr@401e4000/timer1
teensy41:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e0000/timer2 and /soc/qtmr@401e4000/timer2
teensy41:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e0000/timer3 and /soc/qtmr@401e4000/timer3
teensy41:WARNING: Duplicate node name 'timer0' between /soc/qtmr@401e4000/timer0 and /soc/qtmr@401e8000/timer0
teensy41:WARNING: Duplicate node name 'timer1' between /soc/qtmr@401e4000/timer1 and /soc/qtmr@401e8000/timer1
teensy41:WARNING: Duplicate node name 'timer2' between /soc/qtmr@401e4000/timer2 and /soc/qtmr@401e8000/timer2
teensy41:WARNING: Duplicate node name 'timer3' between /soc/qtmr@401e4000/timer3 and /soc/qtmr@401e8000/timer3
waveshare_open103z:WARNING: Duplicate node name 'pwm' between /soc/timers@40000000/pwm and /soc/timers@40000400/pwm
waveshare_open103z:WARNING: Duplicate node name 'pwm' between /soc/timers@40000400/pwm and /soc/timers@40000800/pwm
waveshare_open103z:WARNING: Duplicate node name 'pwm' between /soc/timers@40000800/pwm and /soc/timers@40000c00/pwm
waveshare_open103z:WARNING: Duplicate node name 'pwm' between /soc/timers@40000c00/pwm and /soc/timers@40012c00/pwm
waveshare_open103z:WARNING: Duplicate node name 'pwm' between /soc/timers@40012c00/pwm and /soc/timers@40013400/pwm
galak commented 1 year ago

This is filtering out nodes that don't have a compatible.

henrikbrixandersen commented 1 year ago

So here's the warnings we get -- some 2048 lines of warnings:

Ouch.

This is filtering out nodes that don't have a compatible.

Which can be just as affected by this, I guess, as it will cause DT_NODELABEL() to fail or at least behave unpredictable for these nodes?

galak commented 1 year ago

So I was looking at doing the check in scripts/dts/gen_defines.py. However we could do it in scripts/build/gen_handles.py and thus it will only look at actual devices that exist in someones build.

galak commented 1 year ago

This is filtering out nodes that don't have a compatible.

Which can be just as affected by this, I guess, as it will cause DT_NODELABEL() to fail or at least behave unpredictable for these nodes?

Need to double check my filter, but that's a good point. I think it was filtering on nodes that had a binding match.

galak commented 1 year ago

@gmarull / @henrikbrixandersen thoughts on doing this check in scripts/build/gen_handles.py. Means it happens when you do make/ninja instead of at cmake time. But also means we report a lot less false positives since it will be over actual struct devices instead of checking the devicetree.

henrikbrixandersen commented 1 year ago

But also means we report a lot less false positives since it will be over actual struct devices instead of checking the devicetree.

But the DT_* APIs are not limited to devicetree nodes which have a corresponding struct device. These APIs work for any devicetree node, regardless if it has a compatible property, a corresponding driver, a corresponding driver instance etc.

I think the check needs to do the same, otherwise it will work differently depending on e.g. Kconfig settings.

galak commented 1 year ago

But the DT_* APIs are not limited to devicetree nodes which have a corresponding struct device. These APIs work for any devicetree node, regardless if it has a compatible property, a corresponding driver, a corresponding driver instance etc.

I think the check needs to do the same, otherwise it will work differently depending on e.g. Kconfig settings.

Not sure I follow since the check/issue is around device_get_binding which would only related to struct device.

galak commented 1 year ago

@gmarull thoughts on how to proceed on this?

gmarull commented 1 year ago

@gmarull thoughts on how to proceed on this?

Not really. The thing is that we lost a way to reliably obtain a device reference at runtime. Before you could always set label, which was guaranteed to be unique. We probably need to rethink devices runtime facilities. label was used as a software configuration property, but now we have a similar pattern with node labels, sometimes used to refer to a node within DT but in many other cases to just take a device reference in the code. Maybe we could have an option that, when enabled, allows to have a device table that has human-friendly metadata to access the device at runtime, e.g. all sensors create a /dev/sensorN + compatible entry. This could be useful when debugging, or in shell-based apps.

github-actions[bot] commented 1 year ago

This issue has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 14 days. Note, that you can always re-open a closed issue at any time.

github-actions[bot] commented 1 year ago

This issue has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 14 days. Note, that you can always re-open a closed issue at any time.

github-actions[bot] commented 11 months ago

This issue has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 14 days. Note, that you can always re-open a closed issue at any time.

github-actions[bot] commented 9 months ago

This issue has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 14 days. Note, that you can always re-open a closed issue at any time.

github-actions[bot] commented 7 months ago

This issue has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 14 days. Note, that you can always re-open a closed issue at any time.

github-actions[bot] commented 5 months ago

This issue has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 14 days. Note, that you can always re-open a closed issue at any time.

github-actions[bot] commented 3 months ago

This issue has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 14 days. Note, that you can always re-open a closed issue at any time.

github-actions[bot] commented 4 weeks ago

This issue has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 14 days. Note, that you can always re-open a closed issue at any time.