Siemens.mc.drives.acx.model.configuration Data.package Apr 2026
// Add complete drive unit (infeed + axes) public void addDriveUnit(DriveUnit unit) { driveUnits.add(unit); }
It looks like you're referring to a specific package path within a Siemens Motion Control (MC) environment — likely related to and ACX (Advanced Control Crossconnection) configuration data models. Siemens.mc.drives.acx.model.configuration Data.package
public class Parameter { private int index; // P-number private int subindex; // often 0 private Object value; // int, double, boolean, String private DataType dataType; // enum } (not Java) Here’s a minimal complete ACX file for a single SINAMICS S120 axis: // Add complete drive unit (infeed + axes)