2020-11-25 07:25:13 +00:00
|
|
|
#include "one_wire_timings.h"
|
|
|
|
|
|
|
|
// fix pre C++17 "undefined reference" errors
|
2021-01-28 12:30:31 +00:00
|
|
|
constexpr const OneWiteTimeType OneWireEmulateTiming::RESET_MIN;
|
|
|
|
constexpr const OneWiteTimeType OneWireEmulateTiming::RESET_MAX;
|
2020-11-25 07:25:13 +00:00
|
|
|
|
|
|
|
constexpr const OneWiteTimeType OneWireEmulateTiming::PRESENCE_TIMEOUT;
|
2021-01-28 12:30:31 +00:00
|
|
|
constexpr const OneWiteTimeType OneWireEmulateTiming::PRESENCE_MIN;
|
|
|
|
constexpr const OneWiteTimeType OneWireEmulateTiming::PRESENCE_MAX;
|
2020-11-25 07:25:13 +00:00
|
|
|
|
|
|
|
constexpr const OneWiteTimeType OneWireEmulateTiming::MSG_HIGH_TIMEOUT;
|
2021-01-28 12:30:31 +00:00
|
|
|
constexpr const OneWiteTimeType OneWireEmulateTiming::SLOT_MAX;
|
2020-11-25 07:25:13 +00:00
|
|
|
|
2021-01-28 12:30:31 +00:00
|
|
|
constexpr const OneWiteTimeType OneWireEmulateTiming::READ_MIN;
|
|
|
|
constexpr const OneWiteTimeType OneWireEmulateTiming::READ_MAX;
|
|
|
|
constexpr const OneWiteTimeType OneWireEmulateTiming::WRITE_ZERO;
|