diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-09-16 02:20:14 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-09-16 02:20:14 -0500 |
commit | e6759396090b30b8dc1dc395df852d523b554f9b (patch) | |
tree | fdd58f3906294e5c91a79077956bd3d1223425f1 | |
parent | 359c0da91766962d2adcf0dcc4bf605410faac33 (diff) | |
download | tde-e6759396090b30b8dc1dc395df852d523b554f9b.tar.gz tde-e6759396090b30b8dc1dc395df852d523b554f9b.zip |
Send a grouping of three SAK messages for each SAK keypress
This is needed because each client consumes a single notification message
-rw-r--r-- | experimental/tsak/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/experimental/tsak/main.cpp b/experimental/tsak/main.cpp index 087147935..57e228c2e 100644 --- a/experimental/tsak/main.cpp +++ b/experimental/tsak/main.cpp @@ -330,6 +330,8 @@ int main (int argc, char *argv[]) if (hide_event == true) { // Let anyone listening to our interface know that an SAK keypress was received write(mPipe_fd_out, "SAK\n\r", 6); + write(mPipe_fd_out, "SAK\n\r", 6); + write(mPipe_fd_out, "SAK\n\r", 6); } } } |