Skip to content

Commit

Permalink
RX2164: Функции привзяки/отвязки для приемника - проверка значения пе…
Browse files Browse the repository at this point in the history
…реданного канала
  • Loading branch information
MrNeuronix committed Nov 19, 2014
1 parent f84dd34 commit b3bdf1d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/ru/iris/noolite4j/receiver/RX2164.java
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ public void run() {
*/
while (!shutdown) {

/**
* Пауза нужна для того чтобы иметь возможность записать буффер в устройство
* (привязка, отвязка)
* TODO возможно, есть решение лучше
*/
if (!pause) {
LibUsb.controlTransfer(handle, (byte)(LibUsb.REQUEST_TYPE_CLASS | LibUsb.RECIPIENT_INTERFACE | LibUsb.ENDPOINT_IN), (byte)0x9, (short)0x300, (short)0, buf, 100L);
}
Expand Down

0 comments on commit b3bdf1d

Please sign in to comment.