blob: f4f66e32f13700ee3cccdcf763025233f92f5066 [file] [log] [blame]
Brian Silvermanbfbbe872019-02-10 18:00:57 -08001#include "y2019/jevois/uart.h"
2
3namespace frc971 {
4namespace jevois {
5
6UartBuffer UartPackToTeensy(const Frame & /*message*/) { return UartBuffer(); }
7
8tl::optional<CameraCalibration> UartUnpackToCamera(
9 const UartBuffer & /*message*/) {
10 return tl::nullopt;
11}
12
13} // namespace jevois
14} // namespace frc971