2020-12-10 23:48:55 -08:00
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
#include "chprintf.h"
|
|
|
|
|
2020-12-10 23:56:18 -08:00
|
|
|
#include "lambda_conversion.h"
|
|
|
|
#include "sampling.h"
|
2022-05-11 01:41:07 -07:00
|
|
|
#include "heater_control.h"
|
2022-07-20 16:36:23 -07:00
|
|
|
#include "max31855.h"
|
2022-05-11 01:41:07 -07:00
|
|
|
#include "fault.h"
|
2020-12-10 23:48:55 -08:00
|
|
|
#include "uart.h"
|
|
|
|
|
2022-07-15 11:10:15 -07:00
|
|
|
#include "tunerstudio.h"
|
|
|
|
#include "tunerstudio_io.h"
|
|
|
|
#include "wideband_board_config.h"
|
|
|
|
|
|
|
|
#ifdef UART_DEBUG
|
|
|
|
// just a reminder that we have either TS connectivity or this UART_DEBUG but not both
|
2021-02-25 22:49:51 -08:00
|
|
|
|
2022-07-15 11:10:15 -07:00
|
|
|
SerialConfig cfg = {
|
2020-12-11 00:24:19 -08:00
|
|
|
.speed = 115200,
|
2020-12-10 23:48:55 -08:00
|
|
|
.cr1 = 0,
|
2022-07-15 11:10:15 -07:00
|
|
|
.cr2 = USART_CR2_STOP1_BITS | USART_CR2_LINEN,
|
|
|
|
.cr3 = 0
|
2020-12-10 23:48:55 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
static char printBuffer[200];
|
|
|
|
|
2022-05-11 01:41:07 -07:00
|
|
|
static THD_WORKING_AREA(waUartThread, 512);
|
2020-12-10 23:48:55 -08:00
|
|
|
static void UartThread(void*)
|
|
|
|
{
|
2022-07-15 11:10:15 -07:00
|
|
|
// in UART_DEBUG mode we only support Serial - this file name here has a bit of a confusing naming
|
|
|
|
sdStart(&SD1, &cfg);
|
|
|
|
|
2020-12-10 23:56:18 -08:00
|
|
|
while(true)
|
|
|
|
{
|
2022-08-29 17:19:30 -07:00
|
|
|
int ch;
|
|
|
|
|
|
|
|
for (ch = 0; ch < AFR_CHANNELS; ch++) {
|
|
|
|
float lambda = GetLambda(ch);
|
|
|
|
int lambdaIntPart = lambda;
|
|
|
|
int lambdaThousandths = (lambda - lambdaIntPart) * 1000;
|
|
|
|
int batteryVoltageMv = GetInternalBatteryVoltage(ch) * 1000;
|
|
|
|
int duty = GetHeaterDuty(ch) * 100;
|
|
|
|
|
|
|
|
size_t writeCount = chsnprintf(printBuffer, 200,
|
|
|
|
"[AFR%d]: %d.%03d DC %4d mV AC %4d mV Rint: %5d T: %4d C Ipump: %6d uA Vheater: %5d heater: %s (%d)\tfault: %s\r\n",
|
|
|
|
ch,
|
|
|
|
lambdaIntPart, lambdaThousandths,
|
|
|
|
(int)(GetNernstDc(ch) * 1000.0),
|
|
|
|
(int)(GetNernstAc(ch) * 1000.0),
|
|
|
|
(int)GetSensorInternalResistance(ch),
|
|
|
|
(int)GetSensorTemperature(ch),
|
|
|
|
(int)(GetPumpNominalCurrent(ch) * 1000),
|
|
|
|
batteryVoltageMv,
|
|
|
|
describeHeaterState(GetHeaterState(ch)), duty,
|
|
|
|
describeFault(GetCurrentFault(ch)));
|
|
|
|
chnWrite(&SD1, (const uint8_t *)printBuffer, writeCount);
|
|
|
|
}
|
2020-12-10 23:56:18 -08:00
|
|
|
|
2022-08-20 11:25:16 -07:00
|
|
|
#if HAL_USE_SPI
|
2022-08-29 17:19:30 -07:00
|
|
|
for (ch = 0; ch < EGT_CHANNELS; ch++) {
|
|
|
|
size_t writeCount = chsnprintf(printBuffer, 200,
|
|
|
|
"EGT[%d]: %d C (int %d C)\r\n",
|
|
|
|
(int)getEgtDrivers()[ch].temperature,
|
|
|
|
(int)getEgtDrivers()[ch].cold_joint_temperature);
|
|
|
|
chnWrite(&SD1, (const uint8_t *)printBuffer, writeCount);
|
|
|
|
}
|
2022-08-20 11:25:16 -07:00
|
|
|
#endif /* HAL_USE_SPI */
|
2022-08-29 17:19:30 -07:00
|
|
|
|
|
|
|
chThdSleepMilliseconds(100);
|
2020-12-10 23:56:18 -08:00
|
|
|
}
|
2020-12-10 23:48:55 -08:00
|
|
|
}
|
|
|
|
|
2022-07-18 12:31:09 -07:00
|
|
|
#elif defined(TS_ENABLED)
|
2022-07-15 11:10:15 -07:00
|
|
|
|
|
|
|
#ifdef TS_PRIMARY_UART_PORT
|
|
|
|
static UartTsChannel primaryChannel(TS_PRIMARY_UART_PORT);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TS_PRIMARY_SERIAL_PORT
|
|
|
|
static SerialTsChannel primaryChannel(TS_PRIMARY_SERIAL_PORT);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct PrimaryChannelThread : public TunerstudioThread {
|
|
|
|
PrimaryChannelThread() : TunerstudioThread("Primary TS Channel") { }
|
|
|
|
|
|
|
|
TsChannelBase* setupChannel() {
|
|
|
|
primaryChannel.start(TS_PRIMARY_BAUDRATE);
|
|
|
|
|
|
|
|
return &primaryChannel;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static PrimaryChannelThread primaryChannelThread;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-12-10 23:48:55 -08:00
|
|
|
void InitUart()
|
|
|
|
{
|
2022-07-15 11:10:15 -07:00
|
|
|
#ifdef UART_DEBUG
|
2020-12-10 23:48:55 -08:00
|
|
|
chThdCreateStatic(waUartThread, sizeof(waUartThread), NORMALPRIO, UartThread, nullptr);
|
2022-07-18 12:31:09 -07:00
|
|
|
#elif defined(TS_ENABLED)
|
2022-07-15 11:10:15 -07:00
|
|
|
primaryChannelThread.Start();
|
|
|
|
#endif
|
2020-12-10 23:48:55 -08:00
|
|
|
}
|