I can't tell from the *reduced* schematic

It used to be on GPIO_16 (STATUS_LED_N) on the original RPi.
Code: Select all
$ dtc -O dts bcm2711-rpi-4-b.dtb
Code: Select all
...
leds {
compatible = "gpio-leds";
phandle = <0xe3>;
led-act {
label = "led0";
default-state = "keep";
linux,default-trigger = "mmc0";
gpios = <0x07 0x2a 0x00>;
phandle = <0x42>;
};
...
... why not simply look at the source filecolinh wrote: ↑Sun Mar 12, 2023 1:59 pmOK, so I'm learning about device-trees...
givesCode: Select all
$ dtc -O dts bcm2711-rpi-4-b.dtb
So, I'll try 0x2a (ie. 42)...Code: Select all
... leds { compatible = "gpio-leds"; phandle = <0xe3>; led-act { label = "led0"; default-state = "keep"; linux,default-trigger = "mmc0"; gpios = <0x07 0x2a 0x00>; phandle = <0x42>; }; ...