We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No Tone, After Lunching ExampleHost and hitting the Start Button. I only get a message from ASIO4ALL Icon indicating samples and frecuency.
The text was updated successfully, but these errors were encountered:
It's because ExampleHost is hard coding the channels index using only the first two, channels which in make case do nothing:
activeChannels.add(asioDriver.getChannelOutput(0)); activeChannels.add(asioDriver.getChannelOutput(1));
It should be:
for (int i = 0; i < asioDriver.getNumChannelsOutput(); i++) { AsioChannel asioChannel = asioDriver.getChannelOutput(i); activeChannels.add(asioChannel); }
Sorry, something went wrong.
No branches or pull requests
No Tone, After Lunching ExampleHost and hitting the Start Button. I only get a message from ASIO4ALL Icon indicating samples and frecuency.
The text was updated successfully, but these errors were encountered: