I am working with a TMS570LC4357 micro controller I am working to get the FEE module up and running with. Using HALCoGen I have been able to successfully generate the FEE code files, and include them and the FEE libraries into my CCS project. After some work I was able to get it to compile at which point I wanted to start truly integrating it into my project. The first thing I was going to do was get the TI_Fee_Init() function called in order to run initialize the module but noticed that there was no "header" file that referenced this file. In my main(), I have included the following lines;
#define _L2FMC 1
#include "F021.h"
#include "ti_fee.h"
but this doesn't seem to be sufficient to properly pull in all the functions of the FEE modules. I have looked high and low through the code and don't see a interface that would make this clean. Am I missing something in my setup for how to interact with the FEE code that HALCoGen generates? What are the files that I am supposed to Include in my source code to access all the libary functions such as TI_FEE_Init()?
Below are all the files from HALCoGen along with the FEE lbirary that I am utilizing.