I have the following problem, checking out the code for driving the LED-Matrix on Multichannel Audio Platform which I dont understand.
Looking at the Hardware Manual the LEDs are connected to the Ports X1D14...X1D21 which means the 8-Bit Ports "XS1_PORT_8B" in my xn-File.
Looking into the XN-File, I'll find the line
Code: Select all
<Port Location="XS1_PORT_8B" Name="PORT_USB_RXD"/>
Code: Select all
#define XUD_TILE 1
After using the searching function by searching "PORT_USB_RXD" if found an entry in "xud.h"
Code: Select all
#define PORT_USB_RXD on USB_TILE: XS1_PORT_8C
Code: Select all
#if !defined(USB_TILE)
#define USB_TILE tile[0]
#endif
That means the USB_TILE is on Tile 0 instead of Tile 1 which is defined in the application.
My Question is: Where is the USB-Tile really now? And where can I see the GPIO-Ports, where the LED-Matrix is connected? Or the easier way: where can I drive the LEDs?
I will thank you for your answers.
kind regards
Thomas.