diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/device_proto.h | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/include/device_proto.h b/include/device_proto.h index c248b10..82606a1 100644 --- a/include/device_proto.h +++ b/include/device_proto.h @@ -165,6 +165,7 @@ class Transaction : semantics::non_constructible {                                const command_payload &payload) {      using namespace ::nitrokey::device;      using namespace ::nitrokey::log; +      using namespace std::chrono_literals;      Log::instance()(__PRETTY_FUNCTION__, Loglevel::DEBUG_L2); @@ -190,7 +191,9 @@ class Transaction : semantics::non_constructible {            std::string("Device error while sending command ") +            std::to_string((int)(status))); -    // FIXME make checks done in device:recv here +      std::this_thread::sleep_for(1000ms); + +      // FIXME make checks done in device:recv here      int retry = dev.get_retry_count();      while (retry-- > 0) {        status = dev.recv(&resp); | 
