Hi All -
Im very new to DSP and using DSPs. I am trying to use the CSL for the TMS320C5535 (EzDSP) and simply cannot figure out what #include I have to have.
In the documentation, it is stated that CSL_init() is a defined function. However I dont know in which .h or .c it is defined. And the documentation does not tell me.
right now my entire function is simply:
#include <stdio.h>
#include <stdlib.h>
#include <csl_sar.h>
#include <csl_general.h>
#include <csl_intc.h>
void main( void )
{
CSL_init();
}
Nowhere in the documentation can I find which #include files to have to get that to compile correctly - I get the error "Function declared implicity" which basically means its not getting declared beforehand - which is because I am not including the correct .h or .c files and THAT is because I dont know which ones to include!
All help is appreciated -
Thanks,
Nate