aboutsummaryrefslogtreecommitdiff
path: root/device.cc
diff options
context:
space:
mode:
Diffstat (limited to 'device.cc')
-rw-r--r--device.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/device.cc b/device.cc
index 4f11e23..326f7f4 100644
--- a/device.cc
+++ b/device.cc
@@ -85,6 +85,7 @@ Stick10::Stick10() {
m_vid = 0x20a0;
m_pid = 0x4108;
m_model = DeviceModel::PRO;
+ m_send_receive_delay = 10ms;
}
Stick20::Stick20() {
@@ -92,5 +93,5 @@ Stick20::Stick20() {
m_pid = 0x4109;
m_retry_timeout = std::chrono::milliseconds(500);
m_model = DeviceModel::STORAGE;
-
+ m_send_receive_delay = 1000ms;
}