11-20-2006 02:30 PM
11-27-2006 02:58 PM
Charley_007,
It sounds like your compiler may be interpreting certain symbols incorrectly. One thing to try would be to add another define to your makefile: -DANSI_PROTOTYPES, then do a rebuild of all files includeing the SA lib source files. Also, what type of Linux are you running? Please let me know if this has any effect.
Chris M.
Applications Engineer
National Instruments
12-05-2006 10:50 AM
The result from the AutoCoded version and the result from the MATRIXx model are the same (diff of x10-6). Now we want to move the AutocCoded model on a RT-Linux based computer.
Is there any other define we should include in the makefile?
Target computer: RTAI_Linux on a FEDORA Linux
And Now to solve the first problem :
To bypass the problem, we have made a small modification in order to be able to compile the code. We have remove the declaration of SCHEDULER() in the procedure Background in the sa_utils.h and sa_utils.c file.
//extern void SCHEDULER ();
//EXTERN_FUNC (void SCHEDULER, ( ));
12-07-2006 07:28 AM
12-07-2006 08:03 AM
02-06-2007 01:45 PM
#if (APOLLO||DEC||HP||HP700||IBM||SGI||SOLARIS||SUN||VAX||MSWIN32||OSF1)
#define WS_TARGET 1
#else
#define WS_TARGET 0
#endif
#if (AC1000 || RS_PSOS || RS_VXWORKS || RS_UNIX || C_PC || _TMS320C30 || _TMS320C40 || _NT)
#define AC100_TARGET 1
/*
** Cannot be both a WS_TARGET and an AC100_TARGET
*/
#undef WS_TARGET
#define WS_TARGET 0
#else
#define AC100_TARGET 0
#endif
#if (!AC100_TARGET && !WS_TARGET)
--> Error invalid system type
#endif