one_wire_timings.cpp 748 B

12345678910111213141516
  1. #include "one_wire_timings.h"
  2. // fix pre C++17 "undefined reference" errors
  3. constexpr const OneWiteTimeType OneWireEmulateTiming::RESET_MIN;
  4. constexpr const OneWiteTimeType OneWireEmulateTiming::RESET_MAX;
  5. constexpr const OneWiteTimeType OneWireEmulateTiming::PRESENCE_TIMEOUT;
  6. constexpr const OneWiteTimeType OneWireEmulateTiming::PRESENCE_MIN;
  7. constexpr const OneWiteTimeType OneWireEmulateTiming::PRESENCE_MAX;
  8. constexpr const OneWiteTimeType OneWireEmulateTiming::MSG_HIGH_TIMEOUT;
  9. constexpr const OneWiteTimeType OneWireEmulateTiming::SLOT_MAX;
  10. constexpr const OneWiteTimeType OneWireEmulateTiming::READ_MIN;
  11. constexpr const OneWiteTimeType OneWireEmulateTiming::READ_MAX;
  12. constexpr const OneWiteTimeType OneWireEmulateTiming::WRITE_ZERO;