HF-FDO2 Driver 0.1.0-dev
UART driver for PyroScience FDO2-G2 (data sheet v5 §4: #MOXY, #MRAW, #VERS)
Loading...
Searching...
No Matches
fdo2.hpp
Go to the documentation of this file.
1
12#pragma once
13
15#include "fdo2_types.hpp"
16#include "fdo2_driver.hpp"
17#include "fdo2_version.h"
18
19namespace fdo2 {
20
22inline const char* GetDriverVersion() noexcept {
23 return HF_FDO2_VERSION_STRING;
24}
25
26} // namespace fdo2
FDO2-G2 UART command client (PyroScience data sheet v5, §4).
FDO2-G2 UART types, scaling, and status decoding (PyroScience data sheet v5).
CRTP byte transport for the PyroScience Unified Protocol (PSUP).
Definition fdo2.hpp:19
const char * GetDriverVersion() noexcept
Driver version string (from generated fdo2_version.h).
Definition fdo2.hpp:22