Skip to content

Commit

Permalink
Add prelominary fix for sendDelayed in Device output queue
Browse files Browse the repository at this point in the history
  • Loading branch information
vladamatena committed Mar 3, 2015
1 parent 1fc7bec commit 6ac1b96
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ public void sendDelayed(L1Packet packet) {
if (availableL0Space() < Layer1.MINIMUM_DATA_TRANSMISSION_SIZE) {
send();
} else {
// TODO add scheduler task
// TODO add scheduler task to send packet
// TODO: This is temporaly fix
send();
}
}

Expand Down

0 comments on commit 6ac1b96

Please sign in to comment.