mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-25 20:32:07 +08:00
543ade4eb9
version: sunnypilot v2026.003.000 (dev)
date: 2026-07-25T06:05:55
master commit: 7801bdf0cc
12 lines
311 B
C++
12 lines
311 B
C++
#pragma once
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
#include "tools/cabana/dbc/dbcmanager.h"
|
|
|
|
namespace utils {
|
|
void exportToCSV(const std::string &file_name, std::optional<MessageId> msg_id = std::nullopt);
|
|
void exportSignalsToCSV(const std::string &file_name, const MessageId &msg_id);
|
|
} // namespace utils
|