Hi all,
is it possible to use Arduino as very simple signal generator from blink example.
So load blink code to Arduino:
void setup() {
// initialize digital pin 13 as an output.
pinMode(13, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
delay(50); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
delay(50); // wait for a second
}
Now hookup OBLS channel 0 and GND and run it.
Is this setup possible?
Yes, you certainly can.
Here's a little more info.
Setting the OBLS to capture the channel group 0 captures pins 0-7. Each group I guess increments by 8 pins.
So I set mine on pin 13 on the sniffer, my group to 1.
Then I set the capture waayyyy down to 50 khz.
I clicked begin capture, and filled in my com port. Amazingly, it worked.
[edit]
ugh. so pin 13 is also pin 19... which appears at the group 3... its working.
[/edit]
But then I tried again after closing the client, arduino still blinking.. but nothing captured...
And I was ready to throw this thing away because none of the ROM update utilities actually work. It's very challenging buying something from seeed and having to go through all this hassle to do a "hello world" test.
Now, I haven't figured out why it only captures 24k. What the hell. that's not useful at all. I want to start the capture, then start a process on the target, and capture the stream.
Probably should read the manual....
Cheers,
Mark
I fully undertand :(