1
0
mirror of https://github.com/preble/libpinproc synced 2026-02-24 18:25:23 +01:00

cleanup: move "\n" from start to end of printf() output

This commit is contained in:
Tom Collins
2020-06-26 15:58:44 -07:00
committed by Gerry Stellenberg
parent d415ac8614
commit bb14a68037
3 changed files with 24 additions and 16 deletions

View File

@@ -196,7 +196,7 @@ int PRDevice::GetEvents(PREvent *events, int maxEvents)
}
//fprintf(stderr, "\nLibpinproc: event type: %d", type);
//fprintf(stderr, "Libpinproc: event type: %d\n", type);
switch (type)
{
case P_ROC_EVENT_TYPE_SWITCH:
@@ -216,7 +216,7 @@ int PRDevice::GetEvents(PREvent *events, int maxEvents)
case P_ROC_EVENT_TYPE_BURST_SWITCH:
{
//fprintf(stderr, "\nBurst event");
//fprintf(stderr, "Burst event\n");
if (open) events[i].type = kPREventTypeBurstSwitchOpen;
else events[i].type = kPREventTypeBurstSwitchClosed;
break;
@@ -443,7 +443,8 @@ PRResult PRDevice::DriverLoadMachineTypeDefaults(PRMachineType machineType, uint
memset(driver, 0x00, sizeof(PRDriverState));
driver->driverNum = i;
driver->polarity = mappedDriverGroupPolarity[i/8];
DEBUG(PRLog(kPRLogInfo,"\nDriver Polarity for Driver: %d is %x.", i,driver->polarity));
DEBUG(PRLog(kPRLogInfo, "Driver Polarity for Driver: %d is %x.\n",
i, driver->polarity));
if (resetFlags & kPRResetFlagUpdateDevice)
res = DriverUpdateState(driver);
}
@@ -474,7 +475,8 @@ PRResult PRDevice::DriverLoadMachineTypeDefaults(PRMachineType machineType, uint
if (resetFlags & kPRResetFlagUpdateDevice) {
res = DriverUpdateGroupConfig(&group);
DEBUG(PRLog(kPRLogInfo,"\nDriver Polarity for Group: %d is %x.", i,group.polarity));
DEBUG(PRLog(kPRLogInfo, "Driver Polarity for Group: %d is %x.\n",
i, group.polarity));
}
else
driverGroups[i] = group;
@@ -495,7 +497,8 @@ PRResult PRDevice::DriverLoadMachineTypeDefaults(PRMachineType machineType, uint
if (resetFlags & kPRResetFlagUpdateDevice) {
res = DriverUpdateGroupConfig(&group);
DEBUG(PRLog(kPRLogInfo,"\nDriver Polarity for Group: %d is %x.", i,group.polarity));
DEBUG(PRLog(kPRLogInfo,"Driver Polarity for Group: %d is %x.\n",
i, group.polarity));
}
else
driverGroups[i] = group;
@@ -516,7 +519,8 @@ PRResult PRDevice::DriverLoadMachineTypeDefaults(PRMachineType machineType, uint
if (resetFlags & kPRResetFlagUpdateDevice) {
res = DriverUpdateGroupConfig(&group);
DEBUG(PRLog(kPRLogInfo,"\nDriver Polarity for Group: %d is %x.\n", i,group.polarity));
DEBUG(PRLog(kPRLogInfo, "Driver Polarity for Group: %d is %x.\n",
i, group.polarity));
}
else
driverGroups[i] = group;