Create variables
- Create a module software instance structure for the TC module to store the TC driver state while it is in use.
structtc_module tc_instance;Note: This should never go out of scope as long as the module is in use. In most cases, this should be global. - Create a module software instance structure for DMA resource to store the DMA resource state while it is in use.
structdma_resource example_resource;Note: This should never go out of scope as long as the module is in use. In most cases, this should be global.
