/* -------------------------------------------------------------------------- FILE : load.h PROJECT : PRU DSP host loader DESC : Header file for main C function for PRU loading from embedded constant array. ----------------------------------------------------------------------------- */ #ifndef _LOAD_H_ #define _LOAD_H_ #include "tistdtypes.h" // Prevent C++ name mangling #ifdef __cplusplus extern far "c" { #endif /*********************************************************** * Global Macro Declarations * ***********************************************************/ /*********************************************************** * Global Typedef declarations * ***********************************************************/ /*********************************************************** * Global Variable Declarations * ***********************************************************/ /*********************************************************** * Global Function Declarations * ***********************************************************/ /*********************************************************** * End file * ***********************************************************/ #ifdef __cplusplus } #endif #endif // End _LOAD_H_