mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
Refactor BSP
Magic BSP -> PinecilV2 Pine64 BSP -> Pinecil Update Makefile
This commit is contained in:
35
source/Core/BSP/Pinecilv2/Debug.cpp
Normal file
35
source/Core/BSP/Pinecilv2/Debug.cpp
Normal file
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user