36 lines
1.6 KiB
C++
36 lines
1.6 KiB
C++
/*
|
|
* Debug.cpp
|
|
*
|
|
* Created on: 26 Jan. 2021
|
|
* Author: Ralim
|
|
*/
|
|
#include "Debug.h"
|
|
#include "FreeRTOS.h"
|
|
#include "Pins.h"
|
|
|
|
char uartOutputBuffer[uartOutputBufferLength];
|
|
volatile uint32_t currentOutputPos = 0xFF;
|
|
volatile uint32_t outputLength = 0;
|
|
extern volatile uint8_t pendingPWM;
|
|
void log_system_state(int32_t PWMWattsx10) {
|
|
if (currentOutputPos == 0xFF) {
|
|
|
|
// Want to print a CSV log out the uart
|
|
// Tip_Temp_C,Handle_Temp_C,Output_Power_Wattx10,PWM,Tip_Raw\r\n
|
|
// 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
|
|
);
|
|
|
|
// Now print this out the uart via IRQ (DMA cant be used as oled has it)
|
|
currentOutputPos = 0;
|
|
/* enable USART1 Transmit Buffer Empty interrupt */
|
|
// usart_interrupt_enable(UART_PERIF, USART_INT_TBE);
|
|
}
|
|
}
|