We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 667f1c9 commit e449cedCopy full SHA for e449ced
avrdude-6.3-patches/81-rtsdtr-order-windows-acm.patch
@@ -0,0 +1,16 @@
1
+--- ser_win32.c.orig 2019-01-18 23:15:50.355141672 +0100
2
++++ ser_win32.c 2019-01-18 23:16:00.271207164 +0100
3
+@@ -328,11 +328,11 @@
4
+ HANDLE hComPort=(HANDLE)fd->pfd;
5
+
6
+ if (is_on) {
7
+- EscapeCommFunction(hComPort, SETDTR);
8
+ EscapeCommFunction(hComPort, SETRTS);
9
++ EscapeCommFunction(hComPort, SETDTR);
10
+ } else {
11
+- EscapeCommFunction(hComPort, CLRDTR);
12
+ EscapeCommFunction(hComPort, CLRRTS);
13
++ EscapeCommFunction(hComPort, CLRDTR);
14
+ }
15
+ return 0;
16
0 commit comments