
EXAMPLE 5 :

/****************************************************
* This is an example of global, generic floating point 
* arrays which are used to pass parameters 
*
* This code is compiled to RAM.
****************************************************/

file main.h


#define NUMPARAMS  20
#define NUMRESULTS 12

file main.c

float params[NUMPARAMS];
float results[NUMRESULTS];



