Forum Discussion
Altera_Forum
Honored Contributor
13 years ago --- Quote Start --- If you have two boards connected to one PC, then you need to make sure SystemConsole only uses one board at a time. --- Quote End --- I have two boards connected to two PCs running the same 'sof' file. I create one TCL script for the transmitter that generates burst of packets and sends out as well as collects relevant statistics and print out. Another script for the receiver is to collect statistics of data received. The statistics at transmitter look nice but the receiver does not work. My understanding is that the scripts are used to access, read or/and write to a specific register of a component in the whole design. How are the register organized? are they inside the FPGA and randomly allocated? How does the author make sure that the register address and offsets assigned in the scripts match with the real address in the device? Here is an example of assigning address and offset for Generator component (one avalon slave interface): set GEN_BASE_ADDR 0x01000000 set GEN_START 0x0000000C set GEN_STOP 0x00000010 Thank you.