From: Hiroo H. <hir...@co...> - 2005-03-08 06:27:15
|
Jeff> Using the loopback test for detecting signal errors Jeff> might be worth a try. But I think you would probably Jeff> want to have it send a longer message. Right now it Jeff> only sends 11 bytes. Even sending multiple short Jeff> messages might skew the results because woudn't be Jeff> much different than setting the buffer size to 11 Jeff> bytes and sending a long message. Now the test sends up to 491 byte long message. We may want to change MidiTest.MAX_SYSEX_SIZE to 10000. And this loop for(int i=10; i<sysexpayload.length; i+=20) needs to be changed to something like; for(int i=10; i<sysexpayload.length; i*=2) I'm really interested that this test can detect your problem. -- Hiroo Hayashi |