Topic: Two HDSPe's don't work on ASIO SDK

Hello.
I'm trying to develop a madi 128ch in/out system using two HDSPe boards in an academic research project.
It works well when single HDSPe board is inserted. But, not works when two HDSPe boards are inserted.
Program is developed using VS2010 C++(Win7 64bit) based on Steinberg's ASIO SDK 2.2.
Do I need any special process to use two HDSPe boards ?
When two boards are inserted, the program can load the driver, recognize 128ch in/out and read/write the buffer.
But, no signal/sound are created.
Thanks in advance.

Shiro (Japan)

Re: Two HDSPe's don't work on ASIO SDK

My colleague found my simple mistake.
I should have changed the following number;

enum {
    // number of input and outputs supported by the host application
    // you can change these to higher or lower values
    kMaxInputChannels = 128,
    kMaxOutputChannels = 128
};

Thanks, anyway.