Skip to content

Commit

Permalink
clang-format refactoring, part 3
Browse files Browse the repository at this point in the history
  • Loading branch information
ia committed Jul 13, 2023
1 parent ab1a7b3 commit 2c3c447
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/Core/BSP/Pinecil/Debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ void log_system_state(int32_t PWMWattsx10) {
// 3+1+3+1+3+1+3+1+5+2 = 23, so sizing at 32 for now

outputLength = snprintf(uartOutputBuffer, uartOutputBufferLength, "%lu,%u,%li,%u,%lu\r\n",
TipThermoModel::getTipInC(false), // Tip temp in C
getHandleTemperature(0), // Handle temp in C X10
PWMWattsx10, // Output Wattage
pendingPWM, // PWM
TipThermoModel::convertTipRawADCTouV(getTipRawTemp(0), true) // Tip temp in uV
);
TipThermoModel::getTipInC(false), // Tip temp in C
getHandleTemperature(0), // Handle temp in C X10
PWMWattsx10, // Output Wattage
pendingPWM, // PWM
TipThermoModel::convertTipRawADCTouV(getTipRawTemp(0), true) // Tip temp in uV
);

// Now print this out the uart via IRQ (DMA cant be used as oled has it)
currentOutputPos = 0;
Expand Down

0 comments on commit 2c3c447

Please sign in to comment.