Manuals and Software Downloads
Stepper Motor Manuals
| Document | Description |
|---|---|
| IG Series RS485 User Manual | Complete user manual for IG series RS485 integrated motors |
| Step-Config Software | Configuration software for RS485 integrated motors |
| Modbus Poll Utility | Modbus RTU communication testing utility |
| Adampower Configuration Tool | Google Drive - Configuration software for RS485 motors |
Software Setup Instructions
Step-Config Software Installation
- Extract the zip file
- Open the CommFile folder
- Click Step-Config.exe or Adampower.exe
- Open Project
- Click Browse and select the Project.prj file
- Double-click the Project.prj path
- Right-click Modbus_485 and click Property
- Click Property ComNN, choose COM port and baud rate
- Click Save and OK
- Start using the software to control RS485 integrated stepper motors
CRC Check Routine (C#)
UInt16 Funct_CRC16(unsigned char * puchMsg, UInt16 DataLen)
{
UInt16 i,j,tmp;
UInt16 crcdata=0xFFFF;
for(i=0;i<DataLen;i++)
{
crcdata=(*puchMsg)^crcdata;
puchMsg++;
for(j=0;j<8;j++)
{
tmp=crcdata&0x0001;
crcdata=crcdata>>1;
if(tmp){
crcdata=crcdata^0xA001;
}
}
}
return crcdata;
}
Related Documentation
Last updated: 2026-05-28