This file contains hidden or 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
| // FTDISerialDriver.java | |
| /** | |
| * Set latency timer. | |
| */ | |
| private static final int SIO_SET_LATENCY_TIMER_REQUEST = 9; | |
| public int setLatencyTimer(int latency) throws IOException { | |
| if (latency < 1 || latency > 255) { |
This file contains hidden or 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
| # prep | |
| sudo apt-get install git subversion | |
| git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git | |
| export PATH=`pwd`/depot_tools:$PATH | |
| # install jdk | |
| # https://code.google.com/p/chromium/wiki/AndroidBuildInstructions?#Install_prerequisites | |
| mkdir webrtc | |
| cd webrtc/ |