Motion Control and Motor Drives

cancel
Showing results for 
Search instead for 
Did you mean: 

Find_Index error

I'm using a PCI-7324 and LabWindowsCVI v. 5.5 .
I have this problems:
1) After power_on the PC, if I send a find_index command the PCI7324, this return a NIMC_CIPBitError (Error 7007) and the motor don't start for search index. (If I send a absolute position command it work properly)
2) The only method to execute the Find_Index function is execute a command position, then send the Find_Index function and the motor start and find the index (the bit in axis_stat is 1), but the PCI-7324 return a NIMC_currentPacketError (Error 7002).

I need a source code exemple of the sequence of function to call for execute the Find_Index function.

ThankYou
0 Kudos
Message 1 of 2
(3,886 Views)
Gaulty,

Here is some sample code that I know that works. You might not have you system initialized or setup correctly.

/////////////////////////////////////////////////
#include "flexmotn.h"
#include

int Status;
int main (int argc, char *argv[])
{
Status = flex_find_index (2, NIMC_AXIS2,NIMC_FORWARD_DIRECTION, 0);
return 0;
}
Message 2 of 2
(3,886 Views)