bugfixes for new print commands
This commit is contained in:
@ -426,7 +426,7 @@ ReturnValue_t P60DockHandler::printStatus(DeviceCommandId_t cmd) {
|
||||
}
|
||||
|
||||
void P60DockHandler::printHkTable() {
|
||||
sif::info << "P60 Dock Info: SwitchState, Voltages [mV], Currents [mA]" << std::endl;
|
||||
sif::info << "P60 Dock Info: SwitchState, Currents [mA], Voltages [mV]" << std::endl;
|
||||
|
||||
sif::info << std::setw(30) << std::left << "ACU VCC" << std::dec << "| " <<
|
||||
unsigned(p60dockHkTableDataset.outputEnableStateAcuVcc.value) << ", " <<
|
||||
|
@ -352,7 +352,7 @@ ReturnValue_t PDU1Handler::printStatus(DeviceCommandId_t cmd) {
|
||||
}
|
||||
|
||||
void PDU1Handler::printHkTable() {
|
||||
sif::info << "PDU1 Info: SwitchState, Voltages [mV], Currents [mA]" << std::endl;
|
||||
sif::info << "PDU1 Info: SwitchState, Currents [mA], Voltages [mV]" << std::endl;
|
||||
sif::info << std::setw(30) << std::left << "TCS Board" << std::dec << "| " <<
|
||||
unsigned(pdu1HkTableDataset.outEnabledTCSBoard3V3.value) << ", " <<
|
||||
std::setw(4) << std::right <<
|
||||
@ -362,7 +362,7 @@ void PDU1Handler::printHkTable() {
|
||||
unsigned(pdu1HkTableDataset.outEnabledSyrlinks.value) << ", " <<
|
||||
std::setw(4) << std::right <<
|
||||
pdu1HkTableDataset.currentOutSyrlinks.value << ", " << std::setw(4) <<
|
||||
pdu1HkTableDataset.currentOutSyrlinks.value << std::endl;
|
||||
pdu1HkTableDataset.voltageOutSyrlinks.value << std::endl;
|
||||
sif::info << std::setw(30) << std::left << "Star Tracker" << std::dec << "| " <<
|
||||
static_cast<unsigned int>(pdu1HkTableDataset.outEnabledStarTracker.value) << ", " <<
|
||||
std::setw(4) << std::right <<
|
||||
|
@ -329,7 +329,7 @@ ReturnValue_t PDU2Handler::printStatus(DeviceCommandId_t cmd) {
|
||||
}
|
||||
|
||||
void PDU2Handler::printHkTable() {
|
||||
sif::info << "PDU2 Info: SwitchState, Voltages [mV], Currents [mA]" << std::endl;
|
||||
sif::info << "PDU2 Info: SwitchState, Currents [mA], Voltages [mV]" << std::endl;
|
||||
sif::info << std::setw(30) << std::left << "Q7S" << std::dec << "| " <<
|
||||
unsigned(pdu2HkTableDataset.outEnabledQ7S.value) << ", " <<
|
||||
std::setw(4) << std::right <<
|
||||
|
Reference in New Issue
Block a user