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