Browse Source

add log to uart_prointfer

master
zhaohe 1 year ago
parent
commit
aee79871ce
  1. 1
      src/iflytop/components/uart_printer/uart_printer.cpp

1
src/iflytop/components/uart_printer/uart_printer.cpp

@ -5,6 +5,7 @@ using namespace core;
UartPrinter::UartPrinter() {}
UartPrinter::~UartPrinter() {}
void UartPrinter::initialize(string path, string rate) {
logger->info("initialize uart printer {} {}", path, rate);
m_path = path;
m_rate = rate;
m_uart = make_shared<Uart>();

Loading…
Cancel
Save