DS203 Oscilloscope application layer source code

Hi Guys…

Saw this appear on the other Quad forum. Thought that you might be interested!

Files can be downloaded here! (it’s too big to upload here)

in process.c line368 and following

[code] case C_and_D:

Tmp = _4_posi + 20 *(Ch[C] & Ch[D]);  break;

case C_or_D:

Tmp =  _4_posi + 20 *(Ch[C] & Ch[D]);  break;

[/code]
May be I’m wrong but It looks like an error, isn’t it?

I would have expected something like this

[code] case C_and_D:

Tmp = _4_posi + 20 *(Ch[C] & Ch[D]);  break;

case C_or_D:

Tmp =  _4_posi + 20 *(Ch[C] | Ch[D]);  break;

[/code]

Certainly looks wrong…

Can someone from Seed confirm it is the sofware release we will have in our Quad?

yes. it is the APP used in Quad. and obviously , there are lots of bugs, it’s a long way… :unamused: