But we do have four LED we can manipulate. They are on GPIO "I" as follows:
PI2 -- led 1 - green PI3 -- led 2 - orange PI4 -- led 3 - red PI5 -- led 4 - blueThey are fed 3.3 volts and you pull the GPIO down (open collector) to turn them on.
Section 2.3.2 (page 135) of the RM gives the memory map, and Table 7 shows the base addresses of various registers, including the GPIO, as follows:
GPIOA - 0x5802_0000 GPIOB - 0x5802_0400 GPIOC - 0x5802_0800 GPIOD - 0x5802_0C00 GPIOE - 0x5802_1000 GPIOF - 0x5802_1400 GPIOG - 0x5802_1800 GPIOH - 0x5802_1c00 GPIOI - 0x5802_2000 GPIOJ - 0x5802_2400 GPIOK - 0x5802_2800So we want 0x5802_2000 to get at those LED.
Tom's Computer Info / tom@mmto.org