24Mhz 8 Channel Logic analyzer not work

Hello,
I received a the logic analyzer and installed the software, logic 1.1.15, but the hardware is not detected, doesn't work. The PWR led is on.
I have tried in two machines one with windows xp and another with windows 7, in both the software don't detect the logic analizer.
Can you give me any direction to fix this.
I received a the logic analyzer and installed the software, logic 1.1.15, but the hardware is not detected, doesn't work. The PWR led is on.
I have tried in two machines one with windows xp and another with windows 7, in both the software don't detect the logic analizer.
Can you give me any direction to fix this.
2013-08-07 18:22:16 Hi,aljoal
Since you have tried in two machines, is it 32-bit or 64-bit?
And dont forget connect the GND.
Sometime the frequency of the signal is too low to watch
I used a example code "blink" and change the delay time to 1ms.
I connect pin 0 to "pin 13" on the romeo board ( the led one)
and push "start" and then I got it on channel 0
[code]
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1); // wait for 1 ms
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(1); // wait for 1ms
[/code]
Grey.CC
Since you have tried in two machines, is it 32-bit or 64-bit?
And dont forget connect the GND.
Sometime the frequency of the signal is too low to watch
I used a example code "blink" and change the delay time to 1ms.
I connect pin 0 to "pin 13" on the romeo board ( the led one)
and push "start" and then I got it on channel 0
[code]
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1); // wait for 1 ms
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(1); // wait for 1ms
[/code]
