We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1966604 commit 951cddcCopy full SHA for 951cddc
android-src/KV4PHT/app/src/main/java/com/vagell/kv4pht/radio/RadioAudioService.java
@@ -395,7 +395,9 @@ public void setMode(int mode) {
395
serialPort.setRTS(false);
396
Thread.sleep(50);
397
serialPort.setDTR(false);
398
- } catch (IOException | InterruptedException e) {
+ } catch (InterruptedException e) {
399
+ Thread.currentThread().interrupt();
400
+ } catch (IOException ignored) {
401
}
402
break;
403
default:
0 commit comments