wideband/firmware/uart.cpp

49 lines
1.0 KiB
C++
Raw Normal View History

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"
2020-12-10 23:48:55 -08:00
#include "uart.h"
static const UARTConfig uartCfg =
{
.txend1_cb = nullptr,
.txend2_cb = nullptr,
.rxend_cb = nullptr,
.rxchar_cb = nullptr,
.rxerr_cb = nullptr,
.timeout_cb = nullptr,
.timeout = 0,
.speed = 500000,
.cr1 = 0,
.cr2 = 0,
.cr3 = 0,
};
static char printBuffer[200];
static THD_WORKING_AREA(waUartThread, 256);
static void UartThread(void*)
{
2020-12-10 23:56:18 -08:00
while(true)
{
float lambda = GetLambda();
int lambdaIntPart = lambda;
int lambdaThousandths = (lambda - lambdaIntPart) * 1000;
2020-12-10 23:48:55 -08:00
2020-12-10 23:56:18 -08:00
size_t writeCount = chsnprintf(printBuffer, 200, "%d.%03d\t%d\n", lambdaIntPart, lambdaThousandths, (int)GetSensorInternalResistance());
uartStartSend(&UARTD1, writeCount, printBuffer);
chThdSleepMilliseconds(100);
}
2020-12-10 23:48:55 -08:00
}
void InitUart()
{
uartStart(&UARTD1, &uartCfg);
chThdCreateStatic(waUartThread, sizeof(waUartThread), NORMALPRIO, UartThread, nullptr);
}