Reduce the sleep time of the send_pending_key thread to 1ms

to get a chance of sending a keycode when the CPU flood the FP with DSP
messages (e.g. after the last 'Last-N' value).
1 files changed, 1 insertions(+), 1 deletions(-)

M src/hp34comm.cpp
M src/hp34comm.cpp +1 -1
@@ 91,7 91,7 @@ void HPSerial::send_pending_key() {
 		  }
 	  }
 	  //else // prevent from flooding the main unit
-	  ThisThread::sleep_for(5ms);
+	  ThisThread::sleep_for(1ms);
   }
 }