Disable a group

When you don't need to use an axis group, use DisableGroup to disable it.

NOTE:  Disable a group doesn't mean the axes in the group are disabled. You need to use PowerAxis to disable each.

Copy
DisableGroup
VOID GroupDisable(int Group)
{
    RtPrintf("Disable Group %d.\n\n", Group);

    KsError nRet = DisableGroup(Group);
    if (nRet != errNoError)
        RtPrintf("DisableGroup failed: %x\n\n", nRet);
}