-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #297 from mik3y/v3
ftdi rewrite, MIT license, ...
- Loading branch information
Showing
19 changed files
with
349 additions
and
1,104 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,6 @@ | ||
/* Copyright 2011-2013 Google Inc. | ||
* Copyright 2013 mike wakerly <[email protected]> | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, | ||
* USA. | ||
* | ||
* Project home page: https://github.com/mik3y/usb-serial-for-android | ||
*/ | ||
|
||
|
@@ -254,21 +239,6 @@ public void setParameters(int baudRate, int dataBits, int stopBits, int parity) | |
sendAcmControlMessage(SET_LINE_CODING, 0, msg); | ||
} | ||
|
||
@Override | ||
public boolean getCD() throws IOException { | ||
return false; // TODO | ||
} | ||
|
||
@Override | ||
public boolean getCTS() throws IOException { | ||
return false; // TODO | ||
} | ||
|
||
@Override | ||
public boolean getDSR() throws IOException { | ||
return false; // TODO | ||
} | ||
|
||
@Override | ||
public boolean getDTR() throws IOException { | ||
return mDtr; | ||
|
@@ -280,11 +250,6 @@ public void setDTR(boolean value) throws IOException { | |
setDtrRts(); | ||
} | ||
|
||
@Override | ||
public boolean getRI() throws IOException { | ||
return false; // TODO | ||
} | ||
|
||
@Override | ||
public boolean getRTS() throws IOException { | ||
return mRts; | ||
|
Oops, something went wrong.