Forum Discussion
3 Replies
- Altera_Forum
Honored Contributor
You can see sopc generates two different base address for two different register.Using base address you can differentiate and communicate with two registers.For write operation you can use function.IOWR(BASE_ADDRESS,OFFSET,VALUE) and for read operation you can use function IORD(BASE_ADDRESS,OFFSET)
- Altera_Forum
Honored Contributor
--- Quote Start --- You can see sopc generates two different base address for two different register.Using base address you can differentiate and communicate with two registers.For write operation you can use function.IOWR(BASE_ADDRESS,OFFSET,VALUE) and for read operation you can use function IORD(BASE_ADDRESS,OFFSET) --- Quote End --- actually i really want to make data from one component gets transferred to another sir - Altera_Forum
Honored Contributor
--- Quote Start --- actually i really want to make data from one component gets transferred to another sir --- Quote End --- You can assign address of one of your custom component as a read address of DMA and assign address of other custom component as a write address of DMA.You can find HAL driver of DMA in the user guide of DMA.