Forum Discussion
Altera_Forum
Honored Contributor
11 years agoHAL Driver for custom component
Hai,
I am trying to create a custom component and access it in Qsys.Can anyone please tell me how to create the HAL driver files (BSP Project )like .c,.h,_sw.tcl for the custom module? I have gone through the Altera's documents but i am not able to understand further in that.Can anyone please help me in creating this? Please reply. Regards manjurgl3 Replies
- Altera_Forum
Honored Contributor
The easiest is to create your own .h and .c files for your custom component and include it in your project folder. In those files include system.h so that you can pull your component parameters (address, interrupt id, etc.). Also include io.h so that you can use the IORD and IOWR functions. That way you can write/read directly to your component's registers.
- Altera_Forum
Honored Contributor
Hi,
maybe a sample fits your need. It is a base implementation of some IO-Reads and IO-Writes for the VIP-Mixer from the Altera VIP-Suite which is wrapped by myself. - Altera_Forum
Honored Contributor
Thank you all...
What are the things to be mentioned in the .h file...I read that _INSTANCE AND _INIT need to be mentioned in .h file. How to define this and the struct?