Search found 3 matches

by MarkW
Mon Feb 25, 2013 5:49 am
Forum: C and C++
Topic: Fast Streaming Issues
Replies: 0
Views: 5563

Fast Streaming Issues

Hi, I've been having lots of issues trying to write an application that runs my 2204 scope in fast streaming mode. There appears to be an issue when the drivers reach the end of it's allocated memory and then starts at the beginning again. A quick explanation of what I'm doing: I am detecting an inc...
by MarkW
Wed Feb 13, 2013 9:49 am
Forum: C and C++
Topic: Saving Overview Buffer in Fast Streaming
Replies: 1
Views: 3847

Re: Saving Overview Buffer in Fast Streaming

I have found my problem which lies in the line: values[j] = (**overviewBuffers + j);} which should be: values[j] = *(*overviewBuffers + j);} What a silly mistake and it took me so long to find it! At least it is something I won't forget in the future! MY apologies for taking up unnecessary space in ...
by MarkW
Wed Feb 13, 2013 7:38 am
Forum: C and C++
Topic: Saving Overview Buffer in Fast Streaming
Replies: 1
Views: 3847

Saving Overview Buffer in Fast Streaming

Hi, I realise this may be trivial to most but I am running into issues when I try to save the Overview buffer to my own array. Here is my code for my callback function when I run ps2000_get_streaming_last_values: void stream( short **overviewBuffers, short overflow, unsigned long trggeredAt, short t...